author | Junio C Hamano <gitster@pobox.com> | |
Tue, 15 Jul 2008 06:47:01 +0000 (23:47 -0700) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Tue, 15 Jul 2008 06:47:01 +0000 (23:47 -0700) |
* jc/branch-merged:
branch --merged/--no-merged: allow specifying arbitrary commit
branch --contains: default to HEAD
parse-options: add PARSE_OPT_LASTARG_DEFAULT flag
Conflicts:
Documentation/git-branch.txt
branch --merged/--no-merged: allow specifying arbitrary commit
branch --contains: default to HEAD
parse-options: add PARSE_OPT_LASTARG_DEFAULT flag
Conflicts:
Documentation/git-branch.txt
1 | 2 | |||
---|---|---|---|---|
Documentation/git-branch.txt | patch | | diff1 | | diff2 | | blob | history |
builtin-branch.c | patch | | diff1 | | diff2 | | blob | history |
diff --cc Documentation/git-branch.txt
index b3e62ed011f0a99ce3f173a3f22758edc457f72b,450f90368f74ce104adaea4d8f290dbd99eb84e1..fc5a4a602fb7cbc5e73f7029a0b82bba05d0b913
SYNOPSIS
--------
[verse]
- 'git branch' [--color | --no-color] [-r | -a] [--merged | --no-merged]
- [-v [--abbrev=<length> | --no-abbrev]]
- [--contains <commit>]
-'git-branch' [--color | --no-color] [-r | -a]
++'git branch' [--color | --no-color] [-r | -a]
+ [-v [--abbrev=<length> | --no-abbrev]]
+ [(--merged | --no-merged | --contains) [<commit>]]
-'git-branch' [--track | --no-track] [-l] [-f] <branchname> [<start-point>]
-'git-branch' (-m | -M) [<oldbranch>] <newbranch>
-'git-branch' (-d | -D) [-r] <branchname>...
+'git branch' [--track | --no-track] [-l] [-f] <branchname> [<start-point>]
+'git branch' (-m | -M) [<oldbranch>] <newbranch>
+'git branch' (-d | -D) [-r] <branchname>...
DESCRIPTION
-----------
diff --cc builtin-branch.c
Simple merge