diff options
author | Junio C Hamano <gitster@pobox.com> | 2014-04-03 12:38:11 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-04-03 12:38:11 -0700 |
commit | b407d40933f9c37af16ca3dc275e615ab4fdd8c5 (patch) | |
tree | a22498a4d0d7d253f43cb2bde8b032b2374b12b2 /upload-pack.c | |
parent | 2b06c1e57eecde25ff762cc12939d8a6d8f143cc (diff) | |
parent | 1b32decefd840e0ca5d18eefd6472fd8624dd849 (diff) | |
download | git-b407d40933f9c37af16ca3dc275e615ab4fdd8c5.tar.gz |
Merge branch 'nd/log-show-linear-break'
Attempts to show where a single-strand-of-pearls break in "git log"
output.
* nd/log-show-linear-break:
log: add --show-linear-break to help see non-linear history
object.h: centralize object flag allocation
Diffstat (limited to 'upload-pack.c')
-rw-r--r-- | upload-pack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/upload-pack.c b/upload-pack.c index 286a9ed3ea..01de944a0a 100644 --- a/upload-pack.c +++ b/upload-pack.c @@ -17,7 +17,7 @@ static const char upload_pack_usage[] = "git upload-pack [--strict] [--timeout=<n>] <dir>"; -/* bits #0..7 in revision.h, #8..10 in commit.c */ +/* Remember to update object flag allocation in object.h */ #define THEY_HAVE (1u << 11) #define OUR_REF (1u << 12) #define WANTED (1u << 13) |