I am currently using the Windows Github GUI and its pretty cool looking and easy so I’m trying to use it as often. A problem I encountered is when I fork a project I don’t know how to update that fork with the git
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
GitHub for Windows only supports one remote for now (
origin, which reference your fork).So you need to manually add a remote (called ‘
upstream‘) referencing the original repo, in order for you to be able to pull (from the CLI) fromupstream, updating your local repo and allowing you to push (this time with the GUI) the new commits to your fork.See “What is the difference between origin and upstream in github” for more.