Lesson 1 Lesson 2 Lesson 3 Lesson 4 Git Tree Navigation And Management: Lesson-4 Topics How to change remote repository Commit navigation in git How to jump to a specific commit How to create a branch from a speicific commit How to edit a specific commit How to merge commits How to delete commits How to pick/move commits from one branch to other Changing Remote Repository In 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: