1
I made the Fork of a project, made the appropriate changes, pushed to my repository on Github and there generated a pull request to the original project’s Object.
After a few days I decided to make a new contribution, however, the original repository has already undergone several updates. What should I do?
I thought: add the remote of the original repository and do a pull, is that correct? I even did a test but it doesn’t seem to have pulled the latest content.
Would that be it?
Utilize git pull
– Valdeir Psr
Add the remote and run git pull?
– Fábio Jânio
If you are using
git clone <repositório>
to clone a repository, you do not need to add additional information, except if you have other repositories. At http://rogerdudler.github.io/git-guide/index.pt_BR.html you have some tips that can help.– Valdeir Psr