Skip to content

Commit be0d451

Browse files
Updated links for new site
1 parent 11221eb commit be0d451

38 files changed

+41
-39
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Git For Beginners
22

3-
These are notes from the [Git for Beginners Course](https://kodekloud.com/courses/enrolled/1085975) hosted on KodeKloud.
3+
These are notes from the [Git for Beginners Course](https://kodekloud.com/courses/git-for-beginners/) hosted on KodeKloud.
44

55
# Sections
66

Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# Git Course Introduction
2-
- Take me to [Video Tutorial]()
2+
- Take me to [Video Tutorial](https://kodekloud.com/topic/git-course-introduction/)

docs/02-Git-Introduction/01-Git-Introduction.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Git Introduction
2-
- Take me to [Video Tutorial](https://kodekloud.com/courses/1085975/lectures/23240714)
2+
- Take me to [Video Tutorial](https://kodekloud.com/topic/git-introduction/)
33

44
In this section, we will take a look at Git Introduction
55

docs/02-Git-Introduction/02-Local-and-Remote-Repositories.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Local and Remote Repositories
2-
- Take me to [Video Tutorial](https://kodekloud.com/courses/1085975/lectures/23529749)
2+
- Take me to [Video Tutorial](https://kodekloud.com/topic/local-and-remote-repositories/)
33

44
In this section, we will take a look at local and remote repositories
55

docs/02-Git-Introduction/03-Install-Git.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Install Git
2-
- Take me to [Video Tutorial](https://kodekloud.com/courses/1085975/lectures/23240735)
2+
- Take me to [Video Tutorial](https://kodekloud.com/topic/install-git/)
33

44
In this section, we will take a look at Installing Git
55

Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
# Lab - Introduction
2-
- Take me to [Video Tutorial](https://kodekloud.com/courses/1085975/lectures/23529453)
2+
- Take me to [Video Tutorial](https://kodekloud.com/topic/lab-introduction/)
3+
4+

docs/02-Git-Introduction/05-Practice-Test-Install-Git.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Practice Test - Install Git
2-
- Take me to [Practice Test](https://kodekloud.com/courses/1085975/lectures/23241013)
2+
- Take me to [Practice Test](https://kodekloud.com/topic/lab-install-git/)
33

44
Solutions to practice test - Install git
55

docs/02-Git-Introduction/06-Initialize-a-Git-Repository.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Initialize a Git Repository
2-
- Take me to [Video Tutorial](https://kodekloud.com/courses/1085975/lectures/23241017)
2+
- Take me to [Video Tutorial](https://kodekloud.com/topic/intialize-a-git-repository/)
33

44
In this section, we will take a look at initializing a git repository
55

docs/02-Git-Introduction/07-Git-Log.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Git Log
2-
- Take me to [Video Tutorial](https://kodekloud.com/courses/1085975/lectures/23241022)
2+
- Take me to [Video Tutorial](https://kodekloud.com/topic/git-log/)
33

44
To know about other commits information such as commit hash, the author name and the date
55
```
@@ -9,7 +9,7 @@ $ git log
99

1010
To easily show commit details as one line
1111
```
12-
$ git log --online
12+
$ git log --oneline
1313
```
1414

1515
![gitlog1](../../images/gitlog1.PNG)

docs/02-Git-Introduction/08-Practice-Test-Git-Log.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Practice Test - Git Log
2-
- Take me to [Practice Test](https://kodekloud.com/courses/1085975/lectures/23241040)
2+
- Take me to [Practice Test](https://kodekloud.com/topic/lab-git-log/)
33

44
Solutions to practice test - git log
55

docs/03-Git-Branches/01-Git-Branches.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Git Branches
2-
- Take me to [Video Tutorial](https://kodekloud.com/courses/1085975/lectures/23241083)
2+
- Take me to [Video Tutorial](https://kodekloud.com/topic/git-branches/)
33

44
In this section, we will take a look at git branches
55

docs/03-Git-Branches/02-Practice-Test-Branches.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Practice Test - Branches
2-
- Take me to [Practice Test](https://kodekloud.com/courses/1085975/lectures/23241091)
2+
- Take me to [Practice Test](https://kodekloud.com/topic/lab-branches-checkout-push-branch/)
33

44
Solutions to practice test - Branches
55
- Refer the previous lecture, Branch is nothing but a pointer to a specific commit in GIT

docs/03-Git-Branches/03-Git-Merging-Branches.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Git Merging Branches
2-
- Take me to [Video Tutorial](https://kodekloud.com/courses/1085975/lectures/23241099)
2+
- Take me to [Video Tutorial](https://kodekloud.com/topic/git-merging-branches/)
33

44
In this section, we will take a look at git merging braches
55

docs/03-Git-Branches/04-Practice-Test-Merging-Branches.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Practice Test - Merging Branches
2-
- Take me to [Practice Test](https://kodekloud.com/courses/1085975/lectures/23241113)
2+
- Take me to [Practice Test](https://kodekloud.com/topic/lab-merging-branches/)
33

44
Solutions to practice test - merging branches
55
- Run cd /home/sarah/story-blog; git checkout master and then list the files ls

docs/04-Initialize-Remote-Repositories/01-Initialize-Remote-Repositories.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Initialize Remote Repositories
2-
- Take me to [Video Tutorial](https://kodekloud.com/courses/1085975/lectures/23241042)
2+
- Take me to [Video Tutorial](https://kodekloud.com/topic/initialize-remote-repositories/)
33

44
In this section, we will take a look at initializing remote repositories
55

docs/04-Initialize-Remote-Repositories/02-Pushing-to-remote-repositories.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Pushing to remote repositories
2-
- Take me to [Video Tutorial](https://kodekloud.com/courses/1085975/lectures/23241065)
2+
- Take me to [Video Tutorial](https://kodekloud.com/topic/pushing-to-remote-repositories/)
33

44
In this section, we will take a look at pushing to remote repositories
55

docs/04-Initialize-Remote-Repositories/03-Practice-Test-Remote-Repositories.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Practice Test - Remote Repositories
2-
- Take me to [Practice Test](https://kodekloud.com/courses/1085975/lectures/23241066)
2+
- Take me to [Practice Test](https://kodekloud.com/topic/lab-remote-repositories/)
33

44
Solutions to practice test - Remote Repositories
55
- Run cd /home/sarah/story-blog; git log

docs/04-Initialize-Remote-Repositories/04-Cloning-Remote-Repositories.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Cloning Remote Repositories
2-
- Take me to [Video Tutorial](https://kodekloud.com/courses/git-for-beginners/lectures/23241049)
2+
- Take me to [Video Tutorial](https://kodekloud.com/topic/cloning-remote-repositories/)
33

44
In this section, we will take a look at cloning remote repositories
55

docs/04-Initialize-Remote-Repositories/05-Practice-Test-Cloning-Remote-Repositories.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Practice Test - Cloning Remote Repositories
2-
- Take me to [Video Tutorial](https://kodekloud.com/courses/git-for-beginners/lectures/23427776)
2+
- Take me to [Video Tutorial](https://kodekloud.com/topic/lab-cloning-remote-repositories/)
33

44
Solutions to practice test - cloning remote repositories
55
- Run cd /home/max; git clone http://git.example.com/sarah/story-blog.git

docs/04-Initialize-Remote-Repositories/06-Pull-Requests.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Pull Requests
2-
- Take me to [Video Tutorial](https://kodekloud.com/courses/git-for-beginners/lectures/23429376)
2+
- Take me to [Video Tutorial](https://kodekloud.com/topic/pull-requests/)
33

44
In this section, we will take a look at Pull requests
55

docs/04-Initialize-Remote-Repositories/07-Practice-Test-Pull-Requests.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Pull requests
2-
- Take me to [Practice Test](https://kodekloud.com/courses/git-for-beginners/lectures/23429436)
2+
- Take me to [Practice Test](https://kodekloud.com/topic/labs-pull-requests/)
33

44
Solutions to practice test - pull requests
55

docs/04-Initialize-Remote-Repositories/08-Fetching-and-Pulling.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Fetching and Pulling
2-
- Take me to [Video Tutorial](https://kodekloud.com/courses/git-for-beginners/lectures/23241126)
2+
- Take me to [Video Tutorial](https://kodekloud.com/topic/fetching-and-pulling/)
33

44
In this section, we will take a look at fetching and pulling
55

docs/04-Initialize-Remote-Repositories/09-Practice-Test-Fetching-and-Pulling.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Practice Test - Fetching and Pulling
2-
- Take me to [Practice Test](https://kodekloud.com/courses/git-for-beginners/lectures/23241130)
2+
- Take me to [Practice Test](https://kodekloud.com/topic/lab-fetching-and-pulling/)
33

44
Solutions to practice test - fetching and pulling
55

docs/04-Initialize-Remote-Repositories/10-Merge-Conflicts.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Merge Conflicts
2-
- Take me to [Video Tutorial](https://kodekloud.com/courses/git-for-beginners/lectures/23429479)
2+
- Take me to [Video Tutorial](https://kodekloud.com/topic/git-merge-conflicts/)
33

44
In this section, we will take a look at merge conflicts
55

docs/04-Initialize-Remote-Repositories/11-Practice-Test-Merge-Conflicts.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Practice Test - Merge Conflicts
2-
- Take me to [Practice Test](https://kodekloud.com/courses/git-for-beginners/lectures/23429496)
2+
- Take me to [Practice Test](https://kodekloud.com/topic/lab-merge-conflicts/)
33

44
Solutions to practice test - merge conflicts
55

docs/04-Initialize-Remote-Repositories/12-Fork.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Fork
2-
- Take me to [Video Tutorial](https://kodekloud.com/courses/git-for-beginners/lectures/23529954)
2+
- Take me to [Video Tutorial](https://kodekloud.com/topic/fork/)
33

44
#### How do you create a pull request if you are not part of a git project?
55
- One way to contribute such projects is to **`fork`** the main project.

docs/05-Git-Rebasing/01-Rebasing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Git Rebasing
2-
- Take me to [Video Tutorial](https://kodekloud.com/courses/1085975/lectures/23244803)
2+
- Take me to [Video Tutorial](https://kodekloud.com/topic/rebasing/)
33

44
![r2](../../images/r2.PNG)
55

docs/05-Git-Rebasing/02-Interactive-Rebasing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Git Interactive Rebasing
2-
- Take me to [Video Tutorial](https://kodekloud.com/courses/1085975/lectures/23244813)
2+
- Take me to [Video Tutorial](https://kodekloud.com/topic/interactive-rebasing/)
33

44
![x1](../../images/x1.PNG)
55

docs/05-Git-Rebasing/03-Practice-Test-Rebasing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Practice Test - Rebasing
2-
- Take me to [Practice Test](https://kodekloud.com/courses/1085975/lectures/23428013)
2+
- Take me to [Practice Test](https://kodekloud.com/topic/lab-rebasing/)
33

44
Solutions to practice test - Git Rebasing
55
- Click on the **Gitea Portal UI** button and enter the credentials given in the screen. Open the **sarah** story-blog repository. Click on the **Commits**.

docs/05-Git-Rebasing/04-Cherry-Picking.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Git Cherry Picking
2-
- Take me to [Video Tutorial](https://kodekloud.com/courses/1085975/lectures/23428019)
2+
- Take me to [Video Tutorial](https://kodekloud.com/topic/cherry-picking/)
33

44
![r3](../../images/r3.PNG)
55

docs/05-Git-Rebasing/05-Practice-Test-Cherry-Picking.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Practice Test - Cherry Picking
2-
- Take me to [Practice Test](https://kodekloud.com/courses/1085975/lectures/23244823)
2+
- Take me to [Practice Test](https://kodekloud.com/topic/lab-cherry-picking/)
33

44
Solutions to practice test - Cherry Picking
55
- Move into the directory with `cd` command and check the content of the given file name with `cat` command.

docs/06-Resetting-and-Reverting/01-Resetting-and-Reverting.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Git Resetting and Reverting
2-
- Take me to [Video Tutorial](https://kodekloud.com/courses/1085975/lectures/23244877)
2+
- Take me to [Video Tutorial](https://kodekloud.com/topic/resetting-and-reverting/)
33

44
![r1](../../images/r1.PNG)
55

docs/06-Resetting-and-Reverting/02-Practice-Test-Resetting-and-Reverting.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Practice Test - Resetting and Reverting
2-
- Take me to [Practice Test](https://kodekloud.com/courses/1085975/lectures/23244914)
2+
- Take me to [Practice Test](https://kodekloud.com/topic/lab-resetting-and-reverting/)
33

44
Solutions to practice test - Resetting and Reverting
55
- Run the `cd` command to move into the story-blog directory.

docs/06-Resetting-and-Reverting/03-Stashing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Git Stashing
2-
- Take me to [Video Tutorial](https://kodekloud.com/courses/1085975/lectures/23244916)
2+
- Take me to [Video Tutorial](https://kodekloud.com/topic/stashing/)
33

44
In this section, we will take a took at `git stash` command.
55

docs/06-Resetting-and-Reverting/04-Practice-Test-Stashing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Practice Test - Stashing
2-
- Take me to [Practice Test](https://kodekloud.com/courses/1085975/lectures/23244951)
2+
- Take me to [Practice Test](https://kodekloud.com/topic/lab-stashing/)
33

44
Solutions to practice test - Stashing
55
- Run the `cd` command to move into the **story-blog** directory and their check the content of the lion-and-mouse.txt file. Something is wrong written in the file.

docs/06-Resetting-and-Reverting/05-Reflog.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Git Reflog
2-
- Take me to [Video Tutorial](https://kodekloud.com/courses/1085975/lectures/23530196)
2+
- Take me to [Video Tutorial](https://kodekloud.com/topic/reflog/)
33

44
In this section, we will take a took at `git reflog` command.
55

docs/06-Resetting-and-Reverting/06-Understanding-GIT.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Understanding GIT
2-
- Take me to [Video Tutorial](https://kodekloud.com/courses/1085975/lectures/23244955)
2+
- Take me to [Video Tutorial](https://kodekloud.com/topic/understanding-git/)
33

44
![git](../../images/git.PNG)
55

docs/06-Resetting-and-Reverting/07-Conclusion.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Conclusion
2-
- Take me to [Video Tutorial](https://kodekloud.com/courses/1085975/lectures/23245007)
2+
- Take me to [Video Tutorial](https://kodekloud.com/topic/conclusion/)
33

44
- In this session, we will take a quick recap of all the concepts that we learned.
55

0 commit comments

Comments
 (0)