diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-03-20 14:29:49 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-03-20 14:29:49 -0700 |
commit | 0f64f874317a67d4d32bc10d85cf19e27ff0e43b (patch) | |
tree | 772cfd2b104ea3a9fb55f2265bfc7073746757f7 /branch.h | |
parent | 72c2de5c416baaaad16ab36a88b518d1aacf2a87 (diff) | |
parent | 72f600832f75db626fd9290a21d02d49c92ca9ca (diff) | |
download | git-0f64f874317a67d4d32bc10d85cf19e27ff0e43b.tar.gz |
Merge branch 'jc/clone-branch-rebase'
* jc/clone-branch-rebase:
Improve "git branch --tracking" output
Make git-clone respect branch.autosetuprebase
Conflicts:
builtin-clone.c
Diffstat (limited to 'branch.h')
-rw-r--r-- | branch.h | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -21,4 +21,11 @@ void create_branch(const char *head, const char *name, const char *start_name, */ void remove_branch_state(void); +/* + * Configure local branch "local" to merge remote branch "remote" + * taken from origin "origin". + */ +#define BRANCH_CONFIG_VERBOSE 01 +extern void install_branch_config(int flag, const char *local, const char *origin, const char *remote); + #endif |