Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/asmeurer/git-workflow
The git workflow for contributing to open source repositories.
https://github.com/asmeurer/git-workflow
git github newusers workflow
Last synced: 6 days ago
JSON representation
The git workflow for contributing to open source repositories.
- Host: GitHub
- URL: https://github.com/asmeurer/git-workflow
- Owner: asmeurer
- License: mit
- Created: 2015-05-18T18:34:18.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2022-04-27T17:15:11.000Z (over 2 years ago)
- Last Synced: 2024-12-09T09:54:20.069Z (16 days ago)
- Topics: git, github, newusers, workflow
- Language: HTML
- Homepage: https://www.asmeurer.com/git-workflow/
- Size: 4.23 MB
- Stars: 219
- Watchers: 9
- Forks: 52
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Git workflow
This document describes the git workflow that should be used when contributing
to open source projects on GitHub. It assumes a very basic understanding of
git (commits, branches, etc.) using the command line.*Note: This workflow is designed for open source (i.e., public)
repositories. The workflow for private repositories may be slightly different,
in particular, the repository's team may prefer for you to not fork the repo
but rather push branches to it directly (although note that GitHub does allow
you to fork private repositories that you have push access to and keeps the
fork private).*For this document, we will suppose that you want to contribute a patch to
[sympy/sympy](https://github.com/sympy/sympy).**NOTE: If you want to test out this guide without making an
actual fix, please test against THIS REPO (`asmeurer/git-workflow`). Do not
make a pull request against `sympy/sympy` unless you are making an actual
change.**## Cloning and forking the repository
**Note: The steps in this section only need to be performed once per
repository (e.g., if you contribute a second change to sympy/sympy, you would
not need to repeat them, but if you contribute to
[sympy/sympy-live](https://github.com/sympy/sympy-live) you will need to
repeat them for that repository).**1. **Clone the repository.** Click the green "Clone or download" button ①,
and copy the url ② and type
git clone clone-url
at the terminal. Replace *`clone-url`* with the url that has been copied to
your clipboard. For sympy/sympy, it will be
`[email protected]:sympy/sympy.git`. If you have not set up your ssh keys with
GitHub, use the https url by first clicking the `https` button ③.![clone.png](clone.png)
*Note: It is important that you clone from the repo you are contributing
to (like sympy/sympy),* not *your fork of the repo.*2. **Fork the repo on GitHub to your personal account.** Click the `Fork`
button on the sympy/sympy page.![fork.png](fork.png)
If you are presented with a list of organizations, click on your GitHub
username.3. **Add your fork as a remote.** This remote will be named after your github
username. Go to the fork of your repository, in this case,
https://github.com/your-username/sympy
(replace *`your-username`* with
your GitHub username), and copy the clone url as in step 1. `cd` to your
clone from step 1 and run
git remote add your-github-username fork-url
(replace *`your-github-username`* with your GitHub username and
*`fork-url`* with the url that was copied to your clipboard). You will be
able to tell it is your fork url because it will have your GitHub username
in it. For instance, if your username is `github_user`, you would run the
command `git remote add github_user [email protected]:github_user/sympy.git`.Remember, the above three steps only need to be performed once per
repository. Once you have cloned and forked a repository once, there is no
need to clone or fork it again.## Making changes
Before you make any changes, you should make a branch. Remember to **never
commit to master**. The command `git status` will tell you what branch you are
on. I recommend putting the git branch in your command prompt, so that you
will always know what branch you are on. See
[this guide](http://stackoverflow.com/a/24716445/161801) on how to do this.It is important that you never commit to master because master will be the
branch that you pull upstream changes from (e.g., changes from
sympy/sympy).1. **Update master.** Before you make any changes, first checkout master
```
git checkout master
```and pull in the latest changes
```
git pull
```This will make it so that your changes are against the very latest master,
which will reduce the likelihood of merge conflicts due to your changes
conflicting with changes made by someone else.2. **Create a branch.** Once you have done this, create a new branch. You
should make a branch name that is short, descriptive, and unique. Some
examples of good branch names are `fix-install`, `docs-cleanup`, and
`add-travis-ci`. Some examples of bad branch names are `feature`, `fix`,
and `patch`. The branch name choice is not too important, so don't stress
over it, but it is what people will use to reference your changes if they
want to pull them down on their own computers to test them, so a good name
will make it easier for others to understand what your branch does. In this
example, the branch name is `fix-install`.To create the branch, run
git checkout -b branch-name
(replace *`branch-name`* with the branch name you chose). This will create a
new branch and check it out. You can verify this with `git status`.3. **Make your changes and commit them.** Once you have created your branch,
make your changes and commit them. Remember to keep your commits atomic,
that is, each commit should represent a single unit of change. Also,
remember to write helpful commit messages, so that someone can understand
what the commit does just from reading the message without having to read
the diff.For example, at the command line, this might look like
git add filename [filename ...]
git commit
This will open an editor where you can write your commit message.
4. **Push up your changes.** Push your changes to your fork. Do this by
running
git push your-github-username branch-name
(replace *`your-github-username`* with your GitHub username and
*`branch-name`* with the name of the branch).5. **Make a pull request.** If you then go to your fork on GitHub, you should
see a button to create a pull request from your branch. It will look
something like this:![pull.png](pull.png)
If you do not see this, go to the GitHub page for your fork ①, select the branch from the branch popup ② and click the pull request button ③.
![pull2.png](pull2.png)
Once doing this, you will be presented with a page. This page will show you
the diff of the changes. Double check them to make sure you are making a
pull request against the right branch.Things to check here are that the base fork is the upstream repo ① (in this case, sympy/sympy) and the branch for the
upstream repo is master, and that the head fork is your fork ② and the branch is the branch you wish to make the
pull request from.Enter a descriptive title in the title field ③.
This is very important, as it is what will show up in the pull request
listing and in email notifications to the people in the repo. Pull requests
with undescriptive titles are more likely to be passed by. If the pull
request fixes an issue, I recommend putting the issue number in the pull
request description ④, not the title. People
generally do not know issues by number, so a pull request that is just
titled "fix for issue #1234" is more likely to be passed by, as it is
unclear what it does from the title.If there is more description or discussion about the pull request than
what fits in the title field use the description field ④.If the pull request fixes an issue, you can add "fixes #**1234**" (replace
**1234** with the actual issue number) in the pull request description ④. This exact format, "fixes #**1234**" is important, as
it will cause GitHub to automatically close the issue when the pull request
is merged.Once you are done, click the "create pull request" button ⑤.
![pull3.png](pull3.png)
6. **Pushing additional changes**. Once you have created the pull request, it
will likely be reviewed and some additional fixes will be necessary. **Do
not create a new pull request.** Rather, simply make more commits to your
branch and push them up as in steps 3 and 4. They will be added to the pull
request automatically. Note that although GitHub does notify people when
you push new changes to a branch, many people have these notifications
disabled as they can be quite noisy. So it is a good idea to make a comment
on the pull request whenever you do so to notify people that it is ready to
be reviewed again.Once the pull request has been reviewed successfully, someone with push access
to the main repository will merge it in. At this point you are done. You can
checkout master and pull as described in step 1 and your changes should be
there.## Important points
The important things to remember from this document are
1. You only need to clone and fork once per repository.
2. Always clone from the main repository and add your fork as a remote.
3. Never commit to master. Create a branch and commit to it.
4. Use `git status` often to check what branch you are on and see if you have
any uncommitted changes.5. Be descriptive in your branch names, commit messages, and pull request
title and descriptions.6. Once you have a pull request for a branch, you can push additional changes
to the same branch and they will be added to the pull request
automatically. You should never create a new pull request for the same
branch.7. Comment on the pull request when you want people to know that you have
pushed new changes. Although GitHub does notify people of commit pushes,
people are more likely notice your changes if you leave a comment.