Learn Git & Github - 4

Lesson 1Lesson 2Lesson 3Lesson 4 Git Tree Navigation And Management: Lesson-4 TopicsHow to change remote repositoryCommit navigation in gitHow to jump to a specific commitHow to create a branch from a speicific commitHow to edit a specific commitHow to merge commitsHow to delete commitsHow to pick/move commits from one branch to other Changing Remote RepositoryIn the previous lesson, we learned how to make commits. If totally followed the lesson then i am sure you world have made some commits also. Now change your working directory to your project directory. Check you are on master and Use git pull origin master to update your master. Since Now, we were syncing our local repository with our forked repository. But what we need is to keep updated with the original project repository. So we need to add the url of original project as our main remote repository. We can do so by typing git remote add main https://github.com/kapilgarg1996/fetch-info-github.git. If you have forked another projec…