2008-02-07 17:40:08 +01:00
|
|
|
#include "cache.h"
|
|
|
|
#include "branch.h"
|
|
|
|
#include "refs.h"
|
|
|
|
#include "remote.h"
|
|
|
|
#include "commit.h"
|
|
|
|
|
|
|
|
struct tracking {
|
|
|
|
struct refspec spec;
|
|
|
|
char *src;
|
|
|
|
const char *remote;
|
|
|
|
int matches;
|
|
|
|
};
|
|
|
|
|
|
|
|
static int find_tracked_branch(struct remote *remote, void *priv)
|
|
|
|
{
|
|
|
|
struct tracking *tracking = priv;
|
|
|
|
|
|
|
|
if (!remote_find_tracking(remote, &tracking->spec)) {
|
|
|
|
if (++tracking->matches == 1) {
|
|
|
|
tracking->src = tracking->spec.src;
|
|
|
|
tracking->remote = remote->name;
|
|
|
|
} else {
|
|
|
|
free(tracking->spec.src);
|
|
|
|
if (tracking->src) {
|
|
|
|
free(tracking->src);
|
|
|
|
tracking->src = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
tracking->spec.src = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-05-11 00:36:29 +02:00
|
|
|
static int should_setup_rebase(const struct tracking *tracking)
|
|
|
|
{
|
|
|
|
switch (autorebase) {
|
|
|
|
case AUTOREBASE_NEVER:
|
|
|
|
return 0;
|
|
|
|
case AUTOREBASE_LOCAL:
|
|
|
|
return tracking->remote == NULL;
|
|
|
|
case AUTOREBASE_REMOTE:
|
|
|
|
return tracking->remote != NULL;
|
|
|
|
case AUTOREBASE_ALWAYS:
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-02-07 17:40:08 +01:00
|
|
|
/*
|
|
|
|
* This is called when new_ref is branched off of orig_ref, and tries
|
|
|
|
* to infer the settings for branch.<new_ref>.{remote,merge} from the
|
|
|
|
* config.
|
|
|
|
*/
|
2008-02-19 17:24:37 +01:00
|
|
|
static int setup_tracking(const char *new_ref, const char *orig_ref,
|
|
|
|
enum branch_track track)
|
2008-02-07 17:40:08 +01:00
|
|
|
{
|
|
|
|
char key[1024];
|
|
|
|
struct tracking tracking;
|
|
|
|
|
|
|
|
if (strlen(new_ref) > 1024 - 7 - 7 - 1)
|
|
|
|
return error("Tracking not set up: name too long: %s",
|
|
|
|
new_ref);
|
|
|
|
|
|
|
|
memset(&tracking, 0, sizeof(tracking));
|
|
|
|
tracking.spec.dst = (char *)orig_ref;
|
2008-02-19 17:24:37 +01:00
|
|
|
if (for_each_remote(find_tracked_branch, &tracking))
|
2008-02-07 17:40:08 +01:00
|
|
|
return 1;
|
|
|
|
|
2008-02-19 17:24:37 +01:00
|
|
|
if (!tracking.matches)
|
|
|
|
switch (track) {
|
|
|
|
case BRANCH_TRACK_ALWAYS:
|
|
|
|
case BRANCH_TRACK_EXPLICIT:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2008-02-07 17:40:08 +01:00
|
|
|
if (tracking.matches > 1)
|
|
|
|
return error("Not tracking: ambiguous information for ref %s",
|
|
|
|
orig_ref);
|
|
|
|
|
2008-02-19 17:24:37 +01:00
|
|
|
sprintf(key, "branch.%s.remote", new_ref);
|
|
|
|
git_config_set(key, tracking.remote ? tracking.remote : ".");
|
|
|
|
sprintf(key, "branch.%s.merge", new_ref);
|
|
|
|
git_config_set(key, tracking.src ? tracking.src : orig_ref);
|
|
|
|
printf("Branch %s set up to track %s branch %s.\n", new_ref,
|
|
|
|
tracking.remote ? "remote" : "local", orig_ref);
|
2008-05-11 00:36:29 +02:00
|
|
|
if (should_setup_rebase(&tracking)) {
|
|
|
|
sprintf(key, "branch.%s.rebase", new_ref);
|
|
|
|
git_config_set(key, "true");
|
|
|
|
printf("This branch will rebase on pull.\n");
|
|
|
|
}
|
|
|
|
free(tracking.src);
|
2008-02-07 17:40:08 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void create_branch(const char *head,
|
|
|
|
const char *name, const char *start_name,
|
2008-02-19 17:24:37 +01:00
|
|
|
int force, int reflog, enum branch_track track)
|
2008-02-07 17:40:08 +01:00
|
|
|
{
|
|
|
|
struct ref_lock *lock;
|
|
|
|
struct commit *commit;
|
|
|
|
unsigned char sha1[20];
|
2009-02-14 08:08:05 +01:00
|
|
|
char *real_ref, msg[PATH_MAX + 20];
|
|
|
|
struct strbuf ref = STRBUF_INIT;
|
2008-02-07 17:40:08 +01:00
|
|
|
int forcing = 0;
|
2009-02-14 08:08:05 +01:00
|
|
|
int len;
|
2008-02-07 17:40:08 +01:00
|
|
|
|
2009-02-14 08:08:05 +01:00
|
|
|
len = strlen(name);
|
|
|
|
if (interpret_nth_last_branch(name, &ref) != len) {
|
|
|
|
strbuf_reset(&ref);
|
|
|
|
strbuf_add(&ref, name, len);
|
|
|
|
}
|
|
|
|
strbuf_splice(&ref, 0, 0, "refs/heads/", 11);
|
|
|
|
|
|
|
|
if (check_ref_format(ref.buf))
|
2008-02-07 17:40:08 +01:00
|
|
|
die("'%s' is not a valid branch name.", name);
|
|
|
|
|
2009-02-14 08:08:05 +01:00
|
|
|
if (resolve_ref(ref.buf, sha1, 1, NULL)) {
|
2008-02-07 17:40:08 +01:00
|
|
|
if (!force)
|
|
|
|
die("A branch named '%s' already exists.", name);
|
|
|
|
else if (!is_bare_repository() && !strcmp(head, name))
|
|
|
|
die("Cannot force update the current branch.");
|
|
|
|
forcing = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
real_ref = NULL;
|
|
|
|
if (get_sha1(start_name, sha1))
|
|
|
|
die("Not a valid object name: '%s'.", start_name);
|
|
|
|
|
|
|
|
switch (dwim_ref(start_name, strlen(start_name), sha1, &real_ref)) {
|
|
|
|
case 0:
|
|
|
|
/* Not branching from any existing branch */
|
2008-02-19 17:24:37 +01:00
|
|
|
if (track == BRANCH_TRACK_EXPLICIT)
|
|
|
|
die("Cannot setup tracking information; starting point is not a branch.");
|
2008-02-07 17:40:08 +01:00
|
|
|
break;
|
|
|
|
case 1:
|
2008-10-17 08:37:44 +02:00
|
|
|
/* Unique completion -- good, only if it is a real ref */
|
|
|
|
if (track == BRANCH_TRACK_EXPLICIT && !strcmp(real_ref, "HEAD"))
|
|
|
|
die("Cannot setup tracking information; starting point is not a branch.");
|
2008-02-07 17:40:08 +01:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
die("Ambiguous object name: '%s'.", start_name);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((commit = lookup_commit_reference(sha1)) == NULL)
|
|
|
|
die("Not a valid branch point: '%s'.", start_name);
|
|
|
|
hashcpy(sha1, commit->object.sha1);
|
|
|
|
|
2009-02-14 08:08:05 +01:00
|
|
|
lock = lock_any_ref_for_update(ref.buf, NULL, 0);
|
2008-02-07 17:40:08 +01:00
|
|
|
if (!lock)
|
|
|
|
die("Failed to lock ref for update: %s.", strerror(errno));
|
|
|
|
|
|
|
|
if (reflog)
|
|
|
|
log_all_ref_updates = 1;
|
|
|
|
|
|
|
|
if (forcing)
|
|
|
|
snprintf(msg, sizeof msg, "branch: Reset from %s",
|
|
|
|
start_name);
|
|
|
|
else
|
|
|
|
snprintf(msg, sizeof msg, "branch: Created from %s",
|
|
|
|
start_name);
|
|
|
|
|
|
|
|
if (real_ref && track)
|
2008-02-19 17:24:37 +01:00
|
|
|
setup_tracking(name, real_ref, track);
|
2008-02-07 17:40:08 +01:00
|
|
|
|
|
|
|
if (write_ref_sha1(lock, sha1, msg) < 0)
|
|
|
|
die("Failed to write ref: %s.", strerror(errno));
|
|
|
|
|
2009-02-14 08:08:05 +01:00
|
|
|
strbuf_release(&ref);
|
2008-02-19 17:24:37 +01:00
|
|
|
free(real_ref);
|
2008-02-07 17:40:08 +01:00
|
|
|
}
|
2008-02-07 17:40:16 +01:00
|
|
|
|
|
|
|
void remove_branch_state(void)
|
|
|
|
{
|
|
|
|
unlink(git_path("MERGE_HEAD"));
|
2008-07-12 16:56:19 +02:00
|
|
|
unlink(git_path("MERGE_RR"));
|
2008-02-07 17:40:16 +01:00
|
|
|
unlink(git_path("MERGE_MSG"));
|
builtin-commit: use reduce_heads() only when appropriate
Since commit 6bb6b034 (builtin-commit: use commit_tree(), 2008-09-10),
builtin-commit performs a reduce_heads() unconditionally. However,
it's not always needed, and in some cases even harmful.
reduce_heads() is not needed for the initial commit or for an
"ordinary" commit, because they don't have any or have only one
parent, respectively.
reduce_heads() must be avoided when 'git commit' is run after a 'git
merge --no-ff --no-commit', otherwise it will turn the
non-fast-forward merge into fast-forward. For the same reason,
reduce_heads() must be avoided when amending such a merge commit.
To resolve this issue, 'git merge' will write info about whether
fast-forward is allowed or not to $GIT_DIR/MERGE_MODE. Based on this
info, 'git commit' will only perform reduce_heads() when it's
committing a merge and fast-forward is enabled.
Also add test cases to ensure that non-fast-forward merges are
committed and amended properly.
Signed-off-by: Miklos Vajna <vmiklos@frugalware.org>
Signed-off-by: SZEDER Gábor <szeder@ira.uka.de>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
2008-10-03 14:04:47 +02:00
|
|
|
unlink(git_path("MERGE_MODE"));
|
2008-02-07 17:40:16 +01:00
|
|
|
unlink(git_path("SQUASH_MSG"));
|
|
|
|
}
|