Now you are wiser, because you know that it happened 940 revisions
before v0.99.
+** List unmerged commits
+
+To see what's outstanding in a given branch
+
+ : $ git cherry [-v] [<upstream> [<head> [<limit>]]]
+
+The =-v= option prints summaries as well as the usual commit hashes.
+
+** Remove a remote branch
+
+If you want to delete a branch from a repository to which you only
+have push access, use:
+
+ : git push repository :branch
+
+after deleting the branch in your local repository.
+
* Troubleshooting
** Git commit hangs with no output