diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-01-22 16:08:16 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-01-22 16:08:16 -0800 |
commit | 78bc024ab075f4d5d9cc0b6540b538f3d93d04cb (patch) | |
tree | dfafe6826227f4ec130048dba711da3643722873 /Documentation/git-log.txt | |
parent | Merge branch 'js/refer-upstream' (diff) | |
parent | Documentation: improve description of --glob=pattern and friends (diff) | |
download | tgif-78bc024ab075f4d5d9cc0b6540b538f3d93d04cb.tar.xz |
Merge branch 'il/rev-glob'
* il/rev-glob:
Documentation: improve description of --glob=pattern and friends
rev-parse --branches/--tags/--remotes=pattern
rev-parse --glob
Diffstat (limited to 'Documentation/git-log.txt')
-rw-r--r-- | Documentation/git-log.txt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Documentation/git-log.txt b/Documentation/git-log.txt index ff4063b020..0e39bb61ee 100644 --- a/Documentation/git-log.txt +++ b/Documentation/git-log.txt @@ -107,6 +107,17 @@ git log --follow builtin-rev-list.c:: those commits that occurred before the file was given its present name. +git log --branches --not --remotes=origin:: + + Shows all commits that are in any of local branches but not in + any of remote tracking branches for 'origin' (what you have that + origin doesn't). + +git log master --not --remotes=*/master:: + + Shows all commits that are in local master but not in any remote + repository master branches. + Discussion ---------- |