Some other things you might want to do¶
Delete a branch on GitHub¶
git strongly encourages making a new branch each time you make a change in the code. At some point you will need to clean up the branches you no longer need– that point is after your changes have been accepted if you made a pull request for those changes.
There are two places to delete the branch: in your local repo and on GitHub.
You can do these independent of each other.
To delete both your local copy AND the GitHub copy from the command line follow these instructions:
# change to the master branch (if you still have one, otherwise change to
# another branch)
git checkout master
# delete branch locally
# Note: -d tells git to check whether your branch has been merged somewhere
# if it hasn't, and you delete it, it is gone forever.
#
# Use -D instead to force deletion regardless of merge status
git branch -d my-unwanted-branch
# delete branch on GitHub
git push origin :my-unwanted-branch
(Note the colon :
before test-branch
.) See Github’s instructions for
deleting a branch
if you want to delete the GitHub copy through GitHub.
Several people sharing a single repository¶
If you want to work on some stuff with other people, where you are all committing into the same repository, or even the same branch, then just share it via GitHub.
First fork Scikit-beam into your account, as from Make your own copy of Scikit-beam on GitHub.
Then, go to your forked repository GitHub page, e.g.,
http://github.com/your-user-name/scikit-beam
Click on the ‘Admin’ button, and add anyone else to the repo as a collaborator:
Now all those people can do:
git clone git@githhub.com:your-user-name/scikit-beam.git
Remember that links starting with git@
use the ssh protocol and are
read-write; links starting with git://
are read-only.
Your collaborators can then commit directly into that repo with the usual:
git commit -am 'ENH - much better code'
git push origin master # pushes directly into your repo
Explore your repository¶
To see a graphical representation of the repository branches and commits:
gitk --all
To see a linear list of commits for this branch:
git log
You can also look at the network graph visualizer for your GitHub repo.
Rebasing on trunk¶
Let’s say you thought of some work you’d like to do. You
Fetch the latest Scikit-beam and Make a new feature branch called
cool-feature
. At this stage trunk is at some commit, let’s call it E. Now
you make some new commits on your cool-feature
branch, let’s call them A,
B, C. Maybe your changes take a while, or you come back to them after a while.
In the meantime, trunk has progressed from commit E to commit (say) G:
A---B---C cool-feature
/
D---E---F---G trunk
At this stage you consider merging trunk into your feature branch, and you remember that this here page sternly advises you not to do that, because the history will get messy. Most of the time you can just ask for a review, and not worry that trunk has got a little ahead. But sometimes, the changes in trunk might affect your changes, and you need to harmonize them. In this situation you may prefer to do a rebase.
Rebase takes your changes (A, B, C) and replays them as if they had been made
to the current state of trunk
. In other words, in this case, it takes the
changes represented by A, B, C and replays them on top of G. After the rebase,
your history will look like this:
A'--B'--C' cool-feature
/
D---E---F---G trunk
See rebase without tears for more detail.
To do a rebase on trunk:
# Update the mirror of trunk
git fetch upstream
# Go to the feature branch
git checkout cool-feature
# Make a backup in case you mess up
git branch tmp cool-feature
# Rebase cool-feature onto trunk
git rebase --onto upstream/master upstream/master cool-feature
In this situation, where you are already on branch cool-feature
, the last
command can be written more succinctly as:
git rebase upstream/master
When all looks good you can delete your backup branch:
git branch -D tmp
If it doesn’t look good you may need to have a look at Recovering from mess-ups.
If you have made changes to files that have also changed in trunk, this may generate merge conflicts that you need to resolve - see the git rebase man page for some instructions at the end of the “Description” section. There is some related help on merging in the git user manual - see resolving a merge.
If your feature branch is already on GitHub and you rebase, you will have to
force push the branch; a normal push would give an error. If the branch you
rebased is called cool-feature
and your GitHub fork is available as the
remote called origin
, you use this command to force-push:
git push -f origin cool-feature
Note that this will overwrite the branch on GitHub, i.e. this is one of the few
ways you can actually lose commits with git. Also note that it is never allowed
to force push to the main scikit-beam repo (typically called upstream
), because
this would re-write commit history and thus cause problems for all others.
Recovering from mess-ups¶
Sometimes, you mess up merges or rebases. Luckily, in git it is relatively straightforward to recover from such mistakes.
If you mess up during a rebase:
git rebase --abort
If you notice you messed up after the rebase:
# Reset branch back to the saved point
git reset --hard tmp
If you forgot to make a backup branch:
# Look at the reflog of the branch
git reflog show cool-feature
8630830 cool-feature@{0}: commit: BUG: io: close file handles immediately
278dd2a cool-feature@{1}: rebase finished: refs/heads/my-feature-branch onto 11ee694744f2552d
26aa21a cool-feature@{2}: commit: BUG: lib: make seek_gzip_factory not leak gzip obj
...
# Reset the branch to where it was before the botched rebase
git reset --hard cool-feature@{2}
Rewriting commit history¶
Note
Do this only for your own feature branches.
There’s an embarrassing typo in a commit you made? Or perhaps the you made several false starts you would like the posterity not to see.
This can be done via interactive rebasing.
Suppose that the commit history looks like this:
git log --oneline
eadc391 Fix some remaining bugs
a815645 Modify it so that it works
2dec1ac Fix a few bugs + disable
13d7934 First implementation
6ad92e5 * masked is now an instance of a new object, MaskedConstant
29001ed Add pre-nep for a couple of structured_array_extensions.
...
and 6ad92e5
is the last commit in the cool-feature
branch. Suppose we
want to make the following changes:
Rewrite the commit message for
13d7934
to something more sensible.Combine the commits
2dec1ac
,a815645
,eadc391
into a single one.
We do as follows:
# make a backup of the current state
git branch tmp HEAD
# interactive rebase
git rebase -i 6ad92e5
This will open an editor with the following text in it:
pick 13d7934 First implementation
pick 2dec1ac Fix a few bugs + disable
pick a815645 Modify it so that it works
pick eadc391 Fix some remaining bugs
# Rebase 6ad92e5..eadc391 onto 6ad92e5
#
# Commands:
# p, pick = use commit
# r, reword = use commit, but edit the commit message
# e, edit = use commit, but stop for amending
# s, squash = use commit, but meld into previous commit
# f, fixup = like "squash", but discard this commit's log message
#
# If you remove a line here THAT COMMIT WILL BE LOST.
# However, if you remove everything, the rebase will be aborted.
#
To achieve what we want, we will make the following changes to it:
r 13d7934 First implementation
pick 2dec1ac Fix a few bugs + disable
f a815645 Modify it so that it works
f eadc391 Fix some remaining bugs
This means that (i) we want to edit the commit message for 13d7934
, and
(ii) collapse the last three commits into one. Now we save and quit the
editor.
Git will then immediately bring up an editor for editing the commit message. After revising it, we get the output:
[detached HEAD 721fc64] FOO: First implementation
2 files changed, 199 insertions(+), 66 deletions(-)
[detached HEAD 0f22701] Fix a few bugs + disable
1 files changed, 79 insertions(+), 61 deletions(-)
Successfully rebased and updated refs/heads/my-feature-branch.
and the history looks now like this:
0f22701 Fix a few bugs + disable
721fc64 ENH: Sophisticated feature
6ad92e5 * masked is now an instance of a new object, MaskedConstant
If it went wrong, recovery is again possible as explained above.
Converting a GitHub issue to a pull request¶
Sometimes you have a branch in your own GitHub repository designed to fix one particular issue. If that issue is listed on GitHub, a natural way to address it is to convert the issue to a pull request by attaching code containing the fix for the issue. This can currently only be done using the GitHub API (there’s no button or anything on the web site that does it, at least as of 2/6/2012). There are two options to do this, both of which only work if you own the repository or have the ability to commit directly to it (for Scikit-beam, that means being an Scikit-beam maintainer):
You can use the script at https://gist.github.com/1750715, which will do this for you automatically — just download the script and run it as a python command-line script, using the
python issue2pr.py --help
option to determine the precise usage.You can use the
hub
command-line utility provided here by GitHub. Once installed, you can attach a branch to a pull request by doing:hub pull-request -i <ID> -b scikit-beam:master -h <USER>:<BRANCH>
where
<ID>
is the ID of the issue,<USER>
is the username, and<BRANCH>
is the name of the branch you want to attach to the issue. For example:hub pull-request -i 42 -b scikit-beam:master -h galahad:feature
will attach the
feature
branch fromgalahad
’s Scikit-beam repository to issue 42.The
hub
command can do a lot more to interact with GitHub, so be sure to read their documentation. For example, you can fetch all branches of a repository for a given user by doing:hub fetch <USER>
Merge commits and cherry picks¶
Let’s say that you have a fork (origin) on GitHub of the main Scikit-beam repository (upstream). Your fork is up to date with upstream’s master branch and you’ve made some commits branching off from it on your own branch:
upstream:
master
|
A--B--C
origin:
upstream/master
|
A--B--C
\
D--E
|
issue-branch
Then say you make a pull request of issue-branch against Astroy’s master, and the pull request is accepted and merged. When GitHub merges the pull request it’s basically doing the following in the upstream repository:
$ git checkout master
$ git remote add yourfork file:///path/to/your/fork/scikit-beam
$ git fetch yourfork
$ git merge --no-ff yourfork/issue-branch
Because it always uses --no-ff
we always get a merge commit (it is possible
to manually do a fast-forward merge of a pull request, but we rarely ever do
that). Now the main Scikit-beam repository looks like this:
upstream:
master
|
A--B--C------F
\ /
D--E
|
yourfork/issue-branch
where “F” is the merge commit GitHub just made in upstream.
When you do cherry-pick of a non-merge commit, say you want to just cherry-pick “D” from the branch, what happens is it does a diff of “D” with its parent (in this case “C”) and applies that diff as a patch to whatever your HEAD is.
The problem with a merge commit, such as “F”, is that “F” has two parents: “C” and “E”. It doesn’t know whether to apply the diff of “F” with “C” or the diff of “F” with “E”. Clearly in this case of backporting a pull request to a bug fix branch we want to apply everything that changed on master from the merge, so we want the diff of “F” with “C”.
Since GitHub was on master
when it did git merge yourfork/issue-branch
, the
last commit in master
is the first parent. Basically whatever HEAD you’re on
when you do the merge is the first parent, and the tip you’re merging from is
the second parent (octopus merge gets more complicated but only a little, and
that doesn’t apply to pull requests). Since parents are numbered starting from
“1” then we will always cherry-pick merge commits with -m 1
in this case.
That’s not to say that the cherry-pick will always apply cleanly. Say in upstream we also have a backport branch that we want to cherry pick “F” onto:
upstream:
backport
|
G master
/ |
A--B----C------F
\ /
D--E
We would do:
$ git checkout backport
$ git cherry-pick -m 1 F
But this applies the diff of “F” with “C”, not of “F” with “G”. So clearly there’s potential for conflicts and incongruity here. But this will work like any merge that has conflicts–you can resolve any conflicts manually and then commit. As long as the fix being merged is reasonably self-contained this usually requires little effort.