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;
|
|
|
|
}
|
|
|
|
|
2009-03-04 07:29:55 +01:00
|
|
|
static int should_setup_rebase(const char *origin)
|
2008-05-11 00:36:29 +02:00
|
|
|
{
|
|
|
|
switch (autorebase) {
|
|
|
|
case AUTOREBASE_NEVER:
|
|
|
|
return 0;
|
|
|
|
case AUTOREBASE_LOCAL:
|
2009-03-04 07:29:55 +01:00
|
|
|
return origin == NULL;
|
2008-05-11 00:36:29 +02:00
|
|
|
case AUTOREBASE_REMOTE:
|
2009-03-04 07:29:55 +01:00
|
|
|
return origin != NULL;
|
2008-05-11 00:36:29 +02:00
|
|
|
case AUTOREBASE_ALWAYS:
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-03-04 07:29:55 +01:00
|
|
|
void install_branch_config(int flag, const char *local, const char *origin, const char *remote)
|
|
|
|
{
|
2010-01-18 21:44:12 +01:00
|
|
|
const char *shortname = remote + 11;
|
|
|
|
int remote_is_branch = !prefixcmp(remote, "refs/heads/");
|
2009-03-04 07:29:55 +01:00
|
|
|
struct strbuf key = STRBUF_INIT;
|
|
|
|
int rebasing = should_setup_rebase(origin);
|
|
|
|
|
2010-01-18 21:44:12 +01:00
|
|
|
if (remote_is_branch
|
|
|
|
&& !strcmp(local, shortname)
|
|
|
|
&& !origin) {
|
|
|
|
warning("Not setting branch %s as its own upstream.",
|
|
|
|
local);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-03-04 07:29:55 +01:00
|
|
|
strbuf_addf(&key, "branch.%s.remote", local);
|
|
|
|
git_config_set(key.buf, origin ? origin : ".");
|
|
|
|
|
|
|
|
strbuf_reset(&key);
|
|
|
|
strbuf_addf(&key, "branch.%s.merge", local);
|
|
|
|
git_config_set(key.buf, remote);
|
|
|
|
|
|
|
|
if (rebasing) {
|
|
|
|
strbuf_reset(&key);
|
|
|
|
strbuf_addf(&key, "branch.%s.rebase", local);
|
|
|
|
git_config_set(key.buf, "true");
|
|
|
|
}
|
|
|
|
|
2009-03-10 09:20:42 +01:00
|
|
|
if (flag & BRANCH_CONFIG_VERBOSE) {
|
|
|
|
strbuf_reset(&key);
|
|
|
|
|
|
|
|
strbuf_addstr(&key, origin ? "remote" : "local");
|
|
|
|
|
|
|
|
/* Are we tracking a proper "branch"? */
|
2010-01-18 21:44:12 +01:00
|
|
|
if (remote_is_branch) {
|
|
|
|
strbuf_addf(&key, " branch %s", shortname);
|
2009-03-10 09:20:42 +01:00
|
|
|
if (origin)
|
|
|
|
strbuf_addf(&key, " from %s", origin);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
strbuf_addf(&key, " ref %s", remote);
|
|
|
|
printf("Branch %s set up to track %s%s.\n",
|
|
|
|
local, key.buf,
|
|
|
|
rebasing ? " by rebasing" : "");
|
|
|
|
}
|
2009-03-04 07:29:55 +01:00
|
|
|
strbuf_release(&key);
|
|
|
|
}
|
|
|
|
|
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,
|
2012-03-27 01:51:01 +02:00
|
|
|
enum branch_track track, int quiet)
|
2008-02-07 17:40:08 +01:00
|
|
|
{
|
|
|
|
struct tracking tracking;
|
2012-03-27 01:51:01 +02:00
|
|
|
int config_flags = quiet ? 0 : BRANCH_CONFIG_VERBOSE;
|
2008-02-07 17:40:08 +01:00
|
|
|
|
|
|
|
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:
|
2010-01-18 21:44:11 +01:00
|
|
|
case BRANCH_TRACK_OVERRIDE:
|
2008-02-19 17:24:37 +01:00
|
|
|
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);
|
|
|
|
|
2012-03-27 01:51:01 +02:00
|
|
|
install_branch_config(config_flags, new_ref, tracking.remote,
|
2009-03-04 07:29:55 +01:00
|
|
|
tracking.src ? tracking.src : orig_ref);
|
2008-02-07 17:40:08 +01:00
|
|
|
|
2009-03-04 07:29:55 +01:00
|
|
|
free(tracking.src);
|
2008-02-07 17:40:08 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-09-22 05:19:38 +02:00
|
|
|
struct branch_desc_cb {
|
|
|
|
const char *config_name;
|
|
|
|
const char *value;
|
|
|
|
};
|
|
|
|
|
|
|
|
static int read_branch_desc_cb(const char *var, const char *value, void *cb)
|
|
|
|
{
|
|
|
|
struct branch_desc_cb *desc = cb;
|
|
|
|
if (strcmp(desc->config_name, var))
|
|
|
|
return 0;
|
|
|
|
free((char *)desc->value);
|
|
|
|
return git_config_string(&desc->value, var, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
int read_branch_desc(struct strbuf *buf, const char *branch_name)
|
|
|
|
{
|
|
|
|
struct branch_desc_cb cb;
|
|
|
|
struct strbuf name = STRBUF_INIT;
|
|
|
|
strbuf_addf(&name, "branch.%s.description", branch_name);
|
|
|
|
cb.config_name = name.buf;
|
|
|
|
cb.value = NULL;
|
|
|
|
if (git_config(read_branch_desc_cb, &cb) < 0) {
|
|
|
|
strbuf_release(&name);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (cb.value)
|
|
|
|
strbuf_addstr(buf, cb.value);
|
|
|
|
strbuf_release(&name);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-09-17 01:28:38 +02:00
|
|
|
int validate_new_branchname(const char *name, struct strbuf *ref,
|
|
|
|
int force, int attr_only)
|
2011-08-20 23:49:48 +02:00
|
|
|
{
|
|
|
|
if (strbuf_check_branch_ref(ref, name))
|
|
|
|
die("'%s' is not a valid branch name.", name);
|
|
|
|
|
|
|
|
if (!ref_exists(ref->buf))
|
|
|
|
return 0;
|
2011-09-17 01:28:38 +02:00
|
|
|
else if (!force && !attr_only)
|
2011-08-20 23:49:49 +02:00
|
|
|
die("A branch named '%s' already exists.", ref->buf + strlen("refs/heads/"));
|
2011-08-20 23:49:48 +02:00
|
|
|
|
2011-09-17 01:28:38 +02:00
|
|
|
if (!attr_only) {
|
|
|
|
const char *head;
|
|
|
|
unsigned char sha1[20];
|
2011-08-20 23:49:48 +02:00
|
|
|
|
2011-12-12 12:20:32 +01:00
|
|
|
head = resolve_ref_unsafe("HEAD", sha1, 0, NULL);
|
2011-09-17 01:28:38 +02:00
|
|
|
if (!is_bare_repository() && head && !strcmp(head, ref->buf))
|
|
|
|
die("Cannot force update the current branch.");
|
|
|
|
}
|
2011-08-20 23:49:48 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2008-02-07 17:40:08 +01:00
|
|
|
void create_branch(const char *head,
|
|
|
|
const char *name, const char *start_name,
|
2011-11-26 09:54:55 +01:00
|
|
|
int force, int reflog, int clobber_head,
|
2012-03-27 01:51:01 +02:00
|
|
|
int quiet, enum branch_track track)
|
2008-02-07 17:40:08 +01:00
|
|
|
{
|
2010-01-18 21:44:11 +01:00
|
|
|
struct ref_lock *lock = NULL;
|
2008-02-07 17:40:08 +01:00
|
|
|
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;
|
2010-01-18 21:44:11 +01:00
|
|
|
int dont_change_ref = 0;
|
|
|
|
int explicit_tracking = 0;
|
|
|
|
|
|
|
|
if (track == BRANCH_TRACK_EXPLICIT || track == BRANCH_TRACK_OVERRIDE)
|
|
|
|
explicit_tracking = 1;
|
2008-02-07 17:40:08 +01:00
|
|
|
|
2011-09-17 01:28:38 +02:00
|
|
|
if (validate_new_branchname(name, &ref, force,
|
2011-11-26 09:54:55 +01:00
|
|
|
track == BRANCH_TRACK_OVERRIDE ||
|
|
|
|
clobber_head)) {
|
2011-08-20 23:49:48 +02:00
|
|
|
if (!force)
|
2010-01-18 21:44:11 +01:00
|
|
|
dont_change_ref = 1;
|
2011-08-20 23:49:48 +02:00
|
|
|
else
|
|
|
|
forcing = 1;
|
2008-02-07 17:40:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
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 */
|
2010-01-18 21:44:11 +01:00
|
|
|
if (explicit_tracking)
|
2008-02-19 17:24:37 +01:00
|
|
|
die("Cannot setup tracking information; starting point is not a branch.");
|
2008-02-07 17:40:08 +01:00
|
|
|
break;
|
|
|
|
case 1:
|
2011-02-17 00:12:20 +01:00
|
|
|
/* Unique completion -- good, only if it is a real branch */
|
|
|
|
if (prefixcmp(real_ref, "refs/heads/") &&
|
|
|
|
prefixcmp(real_ref, "refs/remotes/")) {
|
|
|
|
if (explicit_tracking)
|
|
|
|
die("Cannot setup tracking information; starting point is not a branch.");
|
|
|
|
else
|
|
|
|
real_ref = NULL;
|
|
|
|
}
|
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);
|
|
|
|
|
2010-01-18 21:44:11 +01:00
|
|
|
if (!dont_change_ref) {
|
|
|
|
lock = lock_any_ref_for_update(ref.buf, NULL, 0);
|
|
|
|
if (!lock)
|
|
|
|
die_errno("Failed to lock ref for update");
|
|
|
|
}
|
2008-02-07 17:40:08 +01:00
|
|
|
|
|
|
|
if (reflog)
|
|
|
|
log_all_ref_updates = 1;
|
|
|
|
|
|
|
|
if (forcing)
|
2010-04-10 05:42:10 +02:00
|
|
|
snprintf(msg, sizeof msg, "branch: Reset to %s",
|
2008-02-07 17:40:08 +01:00
|
|
|
start_name);
|
2010-01-18 21:44:11 +01:00
|
|
|
else if (!dont_change_ref)
|
2008-02-07 17:40:08 +01:00
|
|
|
snprintf(msg, sizeof msg, "branch: Created from %s",
|
|
|
|
start_name);
|
|
|
|
|
|
|
|
if (real_ref && track)
|
2012-03-27 01:51:01 +02:00
|
|
|
setup_tracking(ref.buf+11, real_ref, track, quiet);
|
2008-02-07 17:40:08 +01:00
|
|
|
|
2010-01-18 21:44:11 +01:00
|
|
|
if (!dont_change_ref)
|
|
|
|
if (write_ref_sha1(lock, sha1, msg) < 0)
|
|
|
|
die_errno("Failed to write ref");
|
2008-02-07 17:40:08 +01:00
|
|
|
|
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)
|
|
|
|
{
|
2011-02-20 05:12:27 +01:00
|
|
|
unlink(git_path("CHERRY_PICK_HEAD"));
|
2011-11-22 12:17:36 +01:00
|
|
|
unlink(git_path("REVERT_HEAD"));
|
2008-02-07 17:40:16 +01:00
|
|
|
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"));
|
|
|
|
}
|