|
You are here |
justanotherdot.com | ||
| | | | |
mark-story.com
|
|
| | | | | As a long time open source maintainer, I occasionally have to modify pull requests made by contributors via forks. If a contributor needs help adding/fixing tests, or addressing linter errors, it is often simpler for me to modify a pull request by adding a commit to their branch. I like this workflow as I can help the contributor out, and give them the option to revise my changes as well. | |
| | | | |
wittchen.io
|
|
| | | | | When you fork GitHub repository, you usually want to have your fork up to date with the original repository. You can update your fork in a few easy steps. Just look at the following example of the Git commands: Add the remote, call it upstream: git remote add upstream https://github.com/whoever/whatever.git Fetch all the branches of that remote into remote-tracking branches, such as upstream/master: git fetch upstream Make sure that you're on your master branch: | |
| | | | |
martinheinz.dev
|
|
| | | | | All of us - software engineers - use git every day, however most people only ever touch the most basic of commands, such as... | |
| | | | |
javier.io
|
|
| | | how to keep your Git-Fork up to date | ||