Explore >> Select a destination


You are here

www.epicweb.dev
| | nathanrosenquist.com
7.0 parsecs away

Travel
| |
| | sookocheff.com
8.0 parsecs away

Travel
| | This is something I often do but rarely remember the steps for. This post is intended to serve as a reminder for me and anyone else having the same question: how to add an upstream remote git repository. Start by forking the repository you are contributing to and cloning that repository to your local file system. In this example, we will use the Elasticsearch repository and assume you have cloned it locally.
| | wittchen.io
9.0 parsecs away

Travel
| | 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:
| | kewah.com
72.4 parsecs away

Travel
| Practices to write a meaningful commit message.