Skip to content

Commit

Permalink
Updated links for new site
Browse files Browse the repository at this point in the history
  • Loading branch information
Tej-Singh-Rana committed Jul 19, 2021
1 parent 11221eb commit be0d451
Show file tree
Hide file tree
Showing 38 changed files with 41 additions and 39 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Git For Beginners

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

# Sections

Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Git Course Introduction
- Take me to [Video Tutorial]()
- Take me to [Video Tutorial](https://kodekloud.com/topic/git-course-introduction/)
2 changes: 1 addition & 1 deletion docs/02-Git-Introduction/01-Git-Introduction.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Git Introduction
- Take me to [Video Tutorial](https://kodekloud.com/courses/1085975/lectures/23240714)
- Take me to [Video Tutorial](https://kodekloud.com/topic/git-introduction/)

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

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

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

Expand Down
2 changes: 1 addition & 1 deletion docs/02-Git-Introduction/03-Install-Git.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Install Git
- Take me to [Video Tutorial](https://kodekloud.com/courses/1085975/lectures/23240735)
- Take me to [Video Tutorial](https://kodekloud.com/topic/install-git/)

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

Expand Down
4 changes: 3 additions & 1 deletion docs/02-Git-Introduction/04-Lab-Introduction.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
# Lab - Introduction
- Take me to [Video Tutorial](https://kodekloud.com/courses/1085975/lectures/23529453)
- Take me to [Video Tutorial](https://kodekloud.com/topic/lab-introduction/)


2 changes: 1 addition & 1 deletion docs/02-Git-Introduction/05-Practice-Test-Install-Git.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Practice Test - Install Git
- Take me to [Practice Test](https://kodekloud.com/courses/1085975/lectures/23241013)
- Take me to [Practice Test](https://kodekloud.com/topic/lab-install-git/)

Solutions to practice test - Install git

Expand Down
2 changes: 1 addition & 1 deletion docs/02-Git-Introduction/06-Initialize-a-Git-Repository.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Initialize a Git Repository
- Take me to [Video Tutorial](https://kodekloud.com/courses/1085975/lectures/23241017)
- Take me to [Video Tutorial](https://kodekloud.com/topic/intialize-a-git-repository/)

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

Expand Down
4 changes: 2 additions & 2 deletions docs/02-Git-Introduction/07-Git-Log.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Git Log
- Take me to [Video Tutorial](https://kodekloud.com/courses/1085975/lectures/23241022)
- Take me to [Video Tutorial](https://kodekloud.com/topic/git-log/)

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

To easily show commit details as one line
```
$ git log --online
$ git log --oneline
```

![gitlog1](../../images/gitlog1.PNG)
Expand Down
2 changes: 1 addition & 1 deletion docs/02-Git-Introduction/08-Practice-Test-Git-Log.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Practice Test - Git Log
- Take me to [Practice Test](https://kodekloud.com/courses/1085975/lectures/23241040)
- Take me to [Practice Test](https://kodekloud.com/topic/lab-git-log/)

Solutions to practice test - git log

Expand Down
2 changes: 1 addition & 1 deletion docs/03-Git-Branches/01-Git-Branches.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Git Branches
- Take me to [Video Tutorial](https://kodekloud.com/courses/1085975/lectures/23241083)
- Take me to [Video Tutorial](https://kodekloud.com/topic/git-branches/)

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

Expand Down
2 changes: 1 addition & 1 deletion docs/03-Git-Branches/02-Practice-Test-Branches.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Practice Test - Branches
- Take me to [Practice Test](https://kodekloud.com/courses/1085975/lectures/23241091)
- Take me to [Practice Test](https://kodekloud.com/topic/lab-branches-checkout-push-branch/)

Solutions to practice test - Branches
- Refer the previous lecture, Branch is nothing but a pointer to a specific commit in GIT
Expand Down
2 changes: 1 addition & 1 deletion docs/03-Git-Branches/03-Git-Merging-Branches.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Git Merging Branches
- Take me to [Video Tutorial](https://kodekloud.com/courses/1085975/lectures/23241099)
- Take me to [Video Tutorial](https://kodekloud.com/topic/git-merging-branches/)

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

Expand Down
2 changes: 1 addition & 1 deletion docs/03-Git-Branches/04-Practice-Test-Merging-Branches.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Practice Test - Merging Branches
- Take me to [Practice Test](https://kodekloud.com/courses/1085975/lectures/23241113)
- Take me to [Practice Test](https://kodekloud.com/topic/lab-merging-branches/)

Solutions to practice test - merging branches
- Run cd /home/sarah/story-blog; git checkout master and then list the files ls
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Initialize Remote Repositories
- Take me to [Video Tutorial](https://kodekloud.com/courses/1085975/lectures/23241042)
- Take me to [Video Tutorial](https://kodekloud.com/topic/initialize-remote-repositories/)

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

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

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

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

Solutions to practice test - Remote Repositories
- Run cd /home/sarah/story-blog; git log
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Cloning Remote Repositories
- Take me to [Video Tutorial](https://kodekloud.com/courses/git-for-beginners/lectures/23241049)
- Take me to [Video Tutorial](https://kodekloud.com/topic/cloning-remote-repositories/)

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

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

Solutions to practice test - cloning remote repositories
- Run cd /home/max; git clone http://git.example.com/sarah/story-blog.git
Expand Down
2 changes: 1 addition & 1 deletion docs/04-Initialize-Remote-Repositories/06-Pull-Requests.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Pull Requests
- Take me to [Video Tutorial](https://kodekloud.com/courses/git-for-beginners/lectures/23429376)
- Take me to [Video Tutorial](https://kodekloud.com/topic/pull-requests/)

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

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

Solutions to practice test - pull requests

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

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

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

Solutions to practice test - fetching and pulling

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

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

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

Solutions to practice test - merge conflicts

Expand Down
2 changes: 1 addition & 1 deletion docs/04-Initialize-Remote-Repositories/12-Fork.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Fork
- Take me to [Video Tutorial](https://kodekloud.com/courses/git-for-beginners/lectures/23529954)
- Take me to [Video Tutorial](https://kodekloud.com/topic/fork/)

#### How do you create a pull request if you are not part of a git project?
- One way to contribute such projects is to **`fork`** the main project.
Expand Down
2 changes: 1 addition & 1 deletion docs/05-Git-Rebasing/01-Rebasing.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Git Rebasing
- Take me to [Video Tutorial](https://kodekloud.com/courses/1085975/lectures/23244803)
- Take me to [Video Tutorial](https://kodekloud.com/topic/rebasing/)

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

Expand Down
2 changes: 1 addition & 1 deletion docs/05-Git-Rebasing/02-Interactive-Rebasing.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Git Interactive Rebasing
- Take me to [Video Tutorial](https://kodekloud.com/courses/1085975/lectures/23244813)
- Take me to [Video Tutorial](https://kodekloud.com/topic/interactive-rebasing/)

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

Expand Down
2 changes: 1 addition & 1 deletion docs/05-Git-Rebasing/03-Practice-Test-Rebasing.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Practice Test - Rebasing
- Take me to [Practice Test](https://kodekloud.com/courses/1085975/lectures/23428013)
- Take me to [Practice Test](https://kodekloud.com/topic/lab-rebasing/)

Solutions to practice test - Git Rebasing
- 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**.
Expand Down
2 changes: 1 addition & 1 deletion docs/05-Git-Rebasing/04-Cherry-Picking.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Git Cherry Picking
- Take me to [Video Tutorial](https://kodekloud.com/courses/1085975/lectures/23428019)
- Take me to [Video Tutorial](https://kodekloud.com/topic/cherry-picking/)

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

Expand Down
2 changes: 1 addition & 1 deletion docs/05-Git-Rebasing/05-Practice-Test-Cherry-Picking.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Practice Test - Cherry Picking
- Take me to [Practice Test](https://kodekloud.com/courses/1085975/lectures/23244823)
- Take me to [Practice Test](https://kodekloud.com/topic/lab-cherry-picking/)

Solutions to practice test - Cherry Picking
- Move into the directory with `cd` command and check the content of the given file name with `cat` command.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Git Resetting and Reverting
- Take me to [Video Tutorial](https://kodekloud.com/courses/1085975/lectures/23244877)
- Take me to [Video Tutorial](https://kodekloud.com/topic/resetting-and-reverting/)

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

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

Solutions to practice test - Resetting and Reverting
- Run the `cd` command to move into the story-blog directory.
Expand Down
2 changes: 1 addition & 1 deletion docs/06-Resetting-and-Reverting/03-Stashing.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Git Stashing
- Take me to [Video Tutorial](https://kodekloud.com/courses/1085975/lectures/23244916)
- Take me to [Video Tutorial](https://kodekloud.com/topic/stashing/)

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

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

Solutions to practice test - Stashing
- 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.
Expand Down
2 changes: 1 addition & 1 deletion docs/06-Resetting-and-Reverting/05-Reflog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Git Reflog
- Take me to [Video Tutorial](https://kodekloud.com/courses/1085975/lectures/23530196)
- Take me to [Video Tutorial](https://kodekloud.com/topic/reflog/)

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

Expand Down
2 changes: 1 addition & 1 deletion docs/06-Resetting-and-Reverting/06-Understanding-GIT.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Understanding GIT
- Take me to [Video Tutorial](https://kodekloud.com/courses/1085975/lectures/23244955)
- Take me to [Video Tutorial](https://kodekloud.com/topic/understanding-git/)

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

Expand Down
2 changes: 1 addition & 1 deletion docs/06-Resetting-and-Reverting/07-Conclusion.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Conclusion
- Take me to [Video Tutorial](https://kodekloud.com/courses/1085975/lectures/23245007)
- Take me to [Video Tutorial](https://kodekloud.com/topic/conclusion/)

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

Expand Down

0 comments on commit be0d451

Please sign in to comment.