Merge branch 'rj/branch-edit-description-with-nth-checkout'
"git branch --edit-description @{-1}" is now a way to edit branch description of the branch you were on before switching to the current branch. * rj/branch-edit-description-with-nth-checkout: branch: support for shortcuts like @{-1}, completed
This commit is contained in:
@ -800,31 +800,33 @@ int cmd_branch(int argc, const char **argv, const char *prefix)
|
||||
} else if (edit_description) {
|
||||
const char *branch_name;
|
||||
struct strbuf branch_ref = STRBUF_INIT;
|
||||
struct strbuf buf = STRBUF_INIT;
|
||||
int ret = 1; /* assume failure */
|
||||
|
||||
if (!argc) {
|
||||
if (filter.detached)
|
||||
die(_("Cannot give description to detached HEAD"));
|
||||
branch_name = head;
|
||||
} else if (argc == 1)
|
||||
branch_name = argv[0];
|
||||
else
|
||||
} else if (argc == 1) {
|
||||
strbuf_branchname(&buf, argv[0], INTERPRET_BRANCH_LOCAL);
|
||||
branch_name = buf.buf;
|
||||
} else {
|
||||
die(_("cannot edit description of more than one branch"));
|
||||
}
|
||||
|
||||
strbuf_addf(&branch_ref, "refs/heads/%s", branch_name);
|
||||
if (!ref_exists(branch_ref.buf)) {
|
||||
strbuf_release(&branch_ref);
|
||||
if (!ref_exists(branch_ref.buf))
|
||||
ret = error((!argc || !strcmp(head, branch_name))
|
||||
? _("No commit on branch '%s' yet.")
|
||||
: _("No branch named '%s'."),
|
||||
branch_name);
|
||||
else if (!edit_branch_description(branch_name))
|
||||
ret = 0; /* happy */
|
||||
|
||||
if (!argc || !strcmp(head, branch_name))
|
||||
return error(_("No commit on branch '%s' yet."),
|
||||
branch_name);
|
||||
else
|
||||
return error(_("No branch named '%s'."),
|
||||
branch_name);
|
||||
}
|
||||
strbuf_release(&branch_ref);
|
||||
strbuf_release(&buf);
|
||||
|
||||
if (edit_branch_description(branch_name))
|
||||
return 1;
|
||||
return ret;
|
||||
} else if (copy) {
|
||||
if (!argc)
|
||||
die(_("branch name required"));
|
||||
@ -844,9 +846,15 @@ int cmd_branch(int argc, const char **argv, const char *prefix)
|
||||
else
|
||||
die(_("too many arguments for a rename operation"));
|
||||
} else if (new_upstream) {
|
||||
struct branch *branch = branch_get(argv[0]);
|
||||
struct branch *branch;
|
||||
struct strbuf buf = STRBUF_INIT;
|
||||
|
||||
if (argc > 1)
|
||||
if (!argc)
|
||||
branch = branch_get(NULL);
|
||||
else if (argc == 1) {
|
||||
strbuf_branchname(&buf, argv[0], INTERPRET_BRANCH_LOCAL);
|
||||
branch = branch_get(buf.buf);
|
||||
} else
|
||||
die(_("too many arguments to set new upstream"));
|
||||
|
||||
if (!branch) {
|
||||
@ -866,11 +874,17 @@ int cmd_branch(int argc, const char **argv, const char *prefix)
|
||||
dwim_and_setup_tracking(the_repository, branch->name,
|
||||
new_upstream, BRANCH_TRACK_OVERRIDE,
|
||||
quiet);
|
||||
strbuf_release(&buf);
|
||||
} else if (unset_upstream) {
|
||||
struct branch *branch = branch_get(argv[0]);
|
||||
struct branch *branch;
|
||||
struct strbuf buf = STRBUF_INIT;
|
||||
|
||||
if (argc > 1)
|
||||
if (!argc)
|
||||
branch = branch_get(NULL);
|
||||
else if (argc == 1) {
|
||||
strbuf_branchname(&buf, argv[0], INTERPRET_BRANCH_LOCAL);
|
||||
branch = branch_get(buf.buf);
|
||||
} else
|
||||
die(_("too many arguments to unset upstream"));
|
||||
|
||||
if (!branch) {
|
||||
@ -883,6 +897,7 @@ int cmd_branch(int argc, const char **argv, const char *prefix)
|
||||
if (!branch_has_merge_config(branch))
|
||||
die(_("Branch '%s' has no upstream information"), branch->name);
|
||||
|
||||
strbuf_reset(&buf);
|
||||
strbuf_addf(&buf, "branch.%s.remote", branch->name);
|
||||
git_config_set_multivar(buf.buf, NULL, NULL, CONFIG_FLAGS_MULTI_REPLACE);
|
||||
strbuf_reset(&buf);
|
||||
|
Reference in New Issue
Block a user