From be0d4515b0466637e3ddc3ffb6c87f78d7bd49d3 Mon Sep 17 00:00:00 2001 From: tej-singh-rana Date: Mon, 19 Jul 2021 14:45:06 +0530 Subject: [PATCH] Updated links for new site --- README.md | 2 +- docs/01-Git-Course-Introduction/01-Git-Course-Introduction.md | 2 +- docs/02-Git-Introduction/01-Git-Introduction.md | 2 +- docs/02-Git-Introduction/02-Local-and-Remote-Repositories.md | 2 +- docs/02-Git-Introduction/03-Install-Git.md | 2 +- docs/02-Git-Introduction/04-Lab-Introduction.md | 4 +++- docs/02-Git-Introduction/05-Practice-Test-Install-Git.md | 2 +- docs/02-Git-Introduction/06-Initialize-a-Git-Repository.md | 2 +- docs/02-Git-Introduction/07-Git-Log.md | 4 ++-- docs/02-Git-Introduction/08-Practice-Test-Git-Log.md | 2 +- docs/03-Git-Branches/01-Git-Branches.md | 2 +- docs/03-Git-Branches/02-Practice-Test-Branches.md | 2 +- docs/03-Git-Branches/03-Git-Merging-Branches.md | 2 +- docs/03-Git-Branches/04-Practice-Test-Merging-Branches.md | 2 +- .../01-Initialize-Remote-Repositories.md | 2 +- .../02-Pushing-to-remote-repositories.md | 2 +- .../03-Practice-Test-Remote-Repositories.md | 2 +- .../04-Cloning-Remote-Repositories.md | 2 +- .../05-Practice-Test-Cloning-Remote-Repositories.md | 2 +- docs/04-Initialize-Remote-Repositories/06-Pull-Requests.md | 2 +- .../07-Practice-Test-Pull-Requests.md | 2 +- .../08-Fetching-and-Pulling.md | 2 +- .../09-Practice-Test-Fetching-and-Pulling.md | 2 +- docs/04-Initialize-Remote-Repositories/10-Merge-Conflicts.md | 2 +- .../11-Practice-Test-Merge-Conflicts.md | 2 +- docs/04-Initialize-Remote-Repositories/12-Fork.md | 2 +- docs/05-Git-Rebasing/01-Rebasing.md | 2 +- docs/05-Git-Rebasing/02-Interactive-Rebasing.md | 2 +- docs/05-Git-Rebasing/03-Practice-Test-Rebasing.md | 2 +- docs/05-Git-Rebasing/04-Cherry-Picking.md | 2 +- docs/05-Git-Rebasing/05-Practice-Test-Cherry-Picking.md | 2 +- docs/06-Resetting-and-Reverting/01-Resetting-and-Reverting.md | 2 +- .../02-Practice-Test-Resetting-and-Reverting.md | 2 +- docs/06-Resetting-and-Reverting/03-Stashing.md | 2 +- docs/06-Resetting-and-Reverting/04-Practice-Test-Stashing.md | 2 +- docs/06-Resetting-and-Reverting/05-Reflog.md | 2 +- docs/06-Resetting-and-Reverting/06-Understanding-GIT.md | 2 +- docs/06-Resetting-and-Reverting/07-Conclusion.md | 2 +- 38 files changed, 41 insertions(+), 39 deletions(-) diff --git a/README.md b/README.md index 167ae4e..ece445e 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/docs/01-Git-Course-Introduction/01-Git-Course-Introduction.md b/docs/01-Git-Course-Introduction/01-Git-Course-Introduction.md index 7768aee..af6685c 100644 --- a/docs/01-Git-Course-Introduction/01-Git-Course-Introduction.md +++ b/docs/01-Git-Course-Introduction/01-Git-Course-Introduction.md @@ -1,2 +1,2 @@ # Git Course Introduction - - Take me to [Video Tutorial]() + - Take me to [Video Tutorial](https://kodekloud.com/topic/git-course-introduction/) diff --git a/docs/02-Git-Introduction/01-Git-Introduction.md b/docs/02-Git-Introduction/01-Git-Introduction.md index cea994b..c9e82dd 100644 --- a/docs/02-Git-Introduction/01-Git-Introduction.md +++ b/docs/02-Git-Introduction/01-Git-Introduction.md @@ -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 diff --git a/docs/02-Git-Introduction/02-Local-and-Remote-Repositories.md b/docs/02-Git-Introduction/02-Local-and-Remote-Repositories.md index 02db57f..6d10dcd 100644 --- a/docs/02-Git-Introduction/02-Local-and-Remote-Repositories.md +++ b/docs/02-Git-Introduction/02-Local-and-Remote-Repositories.md @@ -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 diff --git a/docs/02-Git-Introduction/03-Install-Git.md b/docs/02-Git-Introduction/03-Install-Git.md index ea22c7f..3ea172a 100644 --- a/docs/02-Git-Introduction/03-Install-Git.md +++ b/docs/02-Git-Introduction/03-Install-Git.md @@ -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 diff --git a/docs/02-Git-Introduction/04-Lab-Introduction.md b/docs/02-Git-Introduction/04-Lab-Introduction.md index 267fd66..034c3c6 100644 --- a/docs/02-Git-Introduction/04-Lab-Introduction.md +++ b/docs/02-Git-Introduction/04-Lab-Introduction.md @@ -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/) + + diff --git a/docs/02-Git-Introduction/05-Practice-Test-Install-Git.md b/docs/02-Git-Introduction/05-Practice-Test-Install-Git.md index a109559..9c384c3 100644 --- a/docs/02-Git-Introduction/05-Practice-Test-Install-Git.md +++ b/docs/02-Git-Introduction/05-Practice-Test-Install-Git.md @@ -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 diff --git a/docs/02-Git-Introduction/06-Initialize-a-Git-Repository.md b/docs/02-Git-Introduction/06-Initialize-a-Git-Repository.md index 7631557..13dc850 100644 --- a/docs/02-Git-Introduction/06-Initialize-a-Git-Repository.md +++ b/docs/02-Git-Introduction/06-Initialize-a-Git-Repository.md @@ -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 diff --git a/docs/02-Git-Introduction/07-Git-Log.md b/docs/02-Git-Introduction/07-Git-Log.md index 7b0337f..4b285f2 100644 --- a/docs/02-Git-Introduction/07-Git-Log.md +++ b/docs/02-Git-Introduction/07-Git-Log.md @@ -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 ``` @@ -9,7 +9,7 @@ $ git log To easily show commit details as one line ``` -$ git log --online +$ git log --oneline ``` ![gitlog1](../../images/gitlog1.PNG) diff --git a/docs/02-Git-Introduction/08-Practice-Test-Git-Log.md b/docs/02-Git-Introduction/08-Practice-Test-Git-Log.md index ff764fe..e981816 100644 --- a/docs/02-Git-Introduction/08-Practice-Test-Git-Log.md +++ b/docs/02-Git-Introduction/08-Practice-Test-Git-Log.md @@ -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 diff --git a/docs/03-Git-Branches/01-Git-Branches.md b/docs/03-Git-Branches/01-Git-Branches.md index e143bbe..5b2ce62 100644 --- a/docs/03-Git-Branches/01-Git-Branches.md +++ b/docs/03-Git-Branches/01-Git-Branches.md @@ -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 diff --git a/docs/03-Git-Branches/02-Practice-Test-Branches.md b/docs/03-Git-Branches/02-Practice-Test-Branches.md index 0a1a737..5646dbb 100644 --- a/docs/03-Git-Branches/02-Practice-Test-Branches.md +++ b/docs/03-Git-Branches/02-Practice-Test-Branches.md @@ -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 diff --git a/docs/03-Git-Branches/03-Git-Merging-Branches.md b/docs/03-Git-Branches/03-Git-Merging-Branches.md index ba38ae3..f37e864 100644 --- a/docs/03-Git-Branches/03-Git-Merging-Branches.md +++ b/docs/03-Git-Branches/03-Git-Merging-Branches.md @@ -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 diff --git a/docs/03-Git-Branches/04-Practice-Test-Merging-Branches.md b/docs/03-Git-Branches/04-Practice-Test-Merging-Branches.md index f8b88bf..42191c8 100644 --- a/docs/03-Git-Branches/04-Practice-Test-Merging-Branches.md +++ b/docs/03-Git-Branches/04-Practice-Test-Merging-Branches.md @@ -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 diff --git a/docs/04-Initialize-Remote-Repositories/01-Initialize-Remote-Repositories.md b/docs/04-Initialize-Remote-Repositories/01-Initialize-Remote-Repositories.md index 1004117..fa8ddee 100644 --- a/docs/04-Initialize-Remote-Repositories/01-Initialize-Remote-Repositories.md +++ b/docs/04-Initialize-Remote-Repositories/01-Initialize-Remote-Repositories.md @@ -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 diff --git a/docs/04-Initialize-Remote-Repositories/02-Pushing-to-remote-repositories.md b/docs/04-Initialize-Remote-Repositories/02-Pushing-to-remote-repositories.md index 09a17ae..1dd5c25 100644 --- a/docs/04-Initialize-Remote-Repositories/02-Pushing-to-remote-repositories.md +++ b/docs/04-Initialize-Remote-Repositories/02-Pushing-to-remote-repositories.md @@ -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 diff --git a/docs/04-Initialize-Remote-Repositories/03-Practice-Test-Remote-Repositories.md b/docs/04-Initialize-Remote-Repositories/03-Practice-Test-Remote-Repositories.md index 0a510bf..2fe4362 100644 --- a/docs/04-Initialize-Remote-Repositories/03-Practice-Test-Remote-Repositories.md +++ b/docs/04-Initialize-Remote-Repositories/03-Practice-Test-Remote-Repositories.md @@ -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 diff --git a/docs/04-Initialize-Remote-Repositories/04-Cloning-Remote-Repositories.md b/docs/04-Initialize-Remote-Repositories/04-Cloning-Remote-Repositories.md index 743aae4..c5fb8b4 100644 --- a/docs/04-Initialize-Remote-Repositories/04-Cloning-Remote-Repositories.md +++ b/docs/04-Initialize-Remote-Repositories/04-Cloning-Remote-Repositories.md @@ -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 diff --git a/docs/04-Initialize-Remote-Repositories/05-Practice-Test-Cloning-Remote-Repositories.md b/docs/04-Initialize-Remote-Repositories/05-Practice-Test-Cloning-Remote-Repositories.md index 5343839..be68c32 100644 --- a/docs/04-Initialize-Remote-Repositories/05-Practice-Test-Cloning-Remote-Repositories.md +++ b/docs/04-Initialize-Remote-Repositories/05-Practice-Test-Cloning-Remote-Repositories.md @@ -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 diff --git a/docs/04-Initialize-Remote-Repositories/06-Pull-Requests.md b/docs/04-Initialize-Remote-Repositories/06-Pull-Requests.md index ecf5458..e5ff70f 100644 --- a/docs/04-Initialize-Remote-Repositories/06-Pull-Requests.md +++ b/docs/04-Initialize-Remote-Repositories/06-Pull-Requests.md @@ -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 diff --git a/docs/04-Initialize-Remote-Repositories/07-Practice-Test-Pull-Requests.md b/docs/04-Initialize-Remote-Repositories/07-Practice-Test-Pull-Requests.md index 3b7f659..be0e4e4 100644 --- a/docs/04-Initialize-Remote-Repositories/07-Practice-Test-Pull-Requests.md +++ b/docs/04-Initialize-Remote-Repositories/07-Practice-Test-Pull-Requests.md @@ -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 diff --git a/docs/04-Initialize-Remote-Repositories/08-Fetching-and-Pulling.md b/docs/04-Initialize-Remote-Repositories/08-Fetching-and-Pulling.md index 1ddd978..98459b6 100644 --- a/docs/04-Initialize-Remote-Repositories/08-Fetching-and-Pulling.md +++ b/docs/04-Initialize-Remote-Repositories/08-Fetching-and-Pulling.md @@ -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 diff --git a/docs/04-Initialize-Remote-Repositories/09-Practice-Test-Fetching-and-Pulling.md b/docs/04-Initialize-Remote-Repositories/09-Practice-Test-Fetching-and-Pulling.md index b65f65a..1436cdf 100644 --- a/docs/04-Initialize-Remote-Repositories/09-Practice-Test-Fetching-and-Pulling.md +++ b/docs/04-Initialize-Remote-Repositories/09-Practice-Test-Fetching-and-Pulling.md @@ -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 diff --git a/docs/04-Initialize-Remote-Repositories/10-Merge-Conflicts.md b/docs/04-Initialize-Remote-Repositories/10-Merge-Conflicts.md index fa7ea19..bb4f8a6 100644 --- a/docs/04-Initialize-Remote-Repositories/10-Merge-Conflicts.md +++ b/docs/04-Initialize-Remote-Repositories/10-Merge-Conflicts.md @@ -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 diff --git a/docs/04-Initialize-Remote-Repositories/11-Practice-Test-Merge-Conflicts.md b/docs/04-Initialize-Remote-Repositories/11-Practice-Test-Merge-Conflicts.md index d779f3f..0ae3915 100644 --- a/docs/04-Initialize-Remote-Repositories/11-Practice-Test-Merge-Conflicts.md +++ b/docs/04-Initialize-Remote-Repositories/11-Practice-Test-Merge-Conflicts.md @@ -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 diff --git a/docs/04-Initialize-Remote-Repositories/12-Fork.md b/docs/04-Initialize-Remote-Repositories/12-Fork.md index 135aab6..fb302bb 100644 --- a/docs/04-Initialize-Remote-Repositories/12-Fork.md +++ b/docs/04-Initialize-Remote-Repositories/12-Fork.md @@ -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. diff --git a/docs/05-Git-Rebasing/01-Rebasing.md b/docs/05-Git-Rebasing/01-Rebasing.md index 51b2d3d..db10aab 100644 --- a/docs/05-Git-Rebasing/01-Rebasing.md +++ b/docs/05-Git-Rebasing/01-Rebasing.md @@ -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) diff --git a/docs/05-Git-Rebasing/02-Interactive-Rebasing.md b/docs/05-Git-Rebasing/02-Interactive-Rebasing.md index f2417c6..15089d5 100644 --- a/docs/05-Git-Rebasing/02-Interactive-Rebasing.md +++ b/docs/05-Git-Rebasing/02-Interactive-Rebasing.md @@ -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) diff --git a/docs/05-Git-Rebasing/03-Practice-Test-Rebasing.md b/docs/05-Git-Rebasing/03-Practice-Test-Rebasing.md index f21b95a..a0deb67 100644 --- a/docs/05-Git-Rebasing/03-Practice-Test-Rebasing.md +++ b/docs/05-Git-Rebasing/03-Practice-Test-Rebasing.md @@ -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**. diff --git a/docs/05-Git-Rebasing/04-Cherry-Picking.md b/docs/05-Git-Rebasing/04-Cherry-Picking.md index c66795e..6308b03 100644 --- a/docs/05-Git-Rebasing/04-Cherry-Picking.md +++ b/docs/05-Git-Rebasing/04-Cherry-Picking.md @@ -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) diff --git a/docs/05-Git-Rebasing/05-Practice-Test-Cherry-Picking.md b/docs/05-Git-Rebasing/05-Practice-Test-Cherry-Picking.md index e790924..3f188fd 100644 --- a/docs/05-Git-Rebasing/05-Practice-Test-Cherry-Picking.md +++ b/docs/05-Git-Rebasing/05-Practice-Test-Cherry-Picking.md @@ -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. diff --git a/docs/06-Resetting-and-Reverting/01-Resetting-and-Reverting.md b/docs/06-Resetting-and-Reverting/01-Resetting-and-Reverting.md index 70bff91..865128b 100644 --- a/docs/06-Resetting-and-Reverting/01-Resetting-and-Reverting.md +++ b/docs/06-Resetting-and-Reverting/01-Resetting-and-Reverting.md @@ -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) diff --git a/docs/06-Resetting-and-Reverting/02-Practice-Test-Resetting-and-Reverting.md b/docs/06-Resetting-and-Reverting/02-Practice-Test-Resetting-and-Reverting.md index f63f339..aa09278 100644 --- a/docs/06-Resetting-and-Reverting/02-Practice-Test-Resetting-and-Reverting.md +++ b/docs/06-Resetting-and-Reverting/02-Practice-Test-Resetting-and-Reverting.md @@ -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. diff --git a/docs/06-Resetting-and-Reverting/03-Stashing.md b/docs/06-Resetting-and-Reverting/03-Stashing.md index d55aa95..1ee23ad 100644 --- a/docs/06-Resetting-and-Reverting/03-Stashing.md +++ b/docs/06-Resetting-and-Reverting/03-Stashing.md @@ -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. diff --git a/docs/06-Resetting-and-Reverting/04-Practice-Test-Stashing.md b/docs/06-Resetting-and-Reverting/04-Practice-Test-Stashing.md index 2f58cf7..1b2bb95 100644 --- a/docs/06-Resetting-and-Reverting/04-Practice-Test-Stashing.md +++ b/docs/06-Resetting-and-Reverting/04-Practice-Test-Stashing.md @@ -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. diff --git a/docs/06-Resetting-and-Reverting/05-Reflog.md b/docs/06-Resetting-and-Reverting/05-Reflog.md index 74bf9e4..4d332ac 100644 --- a/docs/06-Resetting-and-Reverting/05-Reflog.md +++ b/docs/06-Resetting-and-Reverting/05-Reflog.md @@ -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. diff --git a/docs/06-Resetting-and-Reverting/06-Understanding-GIT.md b/docs/06-Resetting-and-Reverting/06-Understanding-GIT.md index cb0985d..b8ac106 100644 --- a/docs/06-Resetting-and-Reverting/06-Understanding-GIT.md +++ b/docs/06-Resetting-and-Reverting/06-Understanding-GIT.md @@ -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) diff --git a/docs/06-Resetting-and-Reverting/07-Conclusion.md b/docs/06-Resetting-and-Reverting/07-Conclusion.md index 362269f..d5ee3a1 100644 --- a/docs/06-Resetting-and-Reverting/07-Conclusion.md +++ b/docs/06-Resetting-and-Reverting/07-Conclusion.md @@ -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.