summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2021-07-13 23:52:50 (GMT)
committerJunio C Hamano <gitster@pobox.com>2021-07-13 23:52:50 (GMT)
commit0659866a09ef6a7a0e74eb18ef66d8f5bd959215 (patch)
tree63442e9eee1658d391b5ae4c6f5c0e35d4d73d79
parent07e230d762bde9ce5fa41384efb8caed4c7de684 (diff)
parent7088ce71918a0f9fde2ceb421d4b332888a202c7 (diff)
downloadgit-0659866a09ef6a7a0e74eb18ef66d8f5bd959215.zip
git-0659866a09ef6a7a0e74eb18ef66d8f5bd959215.tar.gz
git-0659866a09ef6a7a0e74eb18ef66d8f5bd959215.tar.bz2
Merge branch 'fc/push-simple-updates-cleanup'
Some more code and doc clarification around "git push". * fc/push-simple-updates-cleanup: push: don't get a full remote object push: only check same_remote when needed push: remove trivial function push: remove redundant check push: factor out the typical case push: get rid of all the setup_push_* functions push: trivial simplifications push: make setup_push_* return the dst push: only get the branch when needed push: factor out null branch check push: split switch cases push: return immediately in trivial switch case push: create new get_upstream_ref() helper
-rw-r--r--builtin/push.c93
1 files changed, 34 insertions, 59 deletions
diff --git a/builtin/push.c b/builtin/push.c
index 29fea70..e8b10a9 100644
--- a/builtin/push.c
+++ b/builtin/push.c
@@ -185,98 +185,73 @@ static const char message_detached_head_die[] =
"\n"
" git push %s HEAD:<name-of-remote-branch>\n");
-static void setup_push_upstream(struct remote *remote, struct branch *branch,
- int same_remote)
+static const char *get_upstream_ref(struct branch *branch, const char *remote_name)
{
- if (!branch)
- die(_(message_detached_head_die), remote->name);
if (!branch->merge_nr || !branch->merge || !branch->remote_name)
die(_("The current branch %s has no upstream branch.\n"
"To push the current branch and set the remote as upstream, use\n"
"\n"
" git push --set-upstream %s %s\n"),
branch->name,
- remote->name,
+ remote_name,
branch->name);
if (branch->merge_nr != 1)
die(_("The current branch %s has multiple upstream branches, "
"refusing to push."), branch->name);
- if (!same_remote)
- die(_("You are pushing to remote '%s', which is not the upstream of\n"
- "your current branch '%s', without telling me what to push\n"
- "to update which remote branch."),
- remote->name, branch->name);
- refspec_appendf(&rs, "%s:%s", branch->refname, branch->merge[0]->src);
+ return branch->merge[0]->src;
}
-static void setup_push_current(struct remote *remote, struct branch *branch)
+static void setup_default_push_refspecs(struct remote *remote)
{
- if (!branch)
- die(_(message_detached_head_die), remote->name);
- refspec_appendf(&rs, "%s:%s", branch->refname, branch->refname);
-}
+ struct branch *branch;
+ const char *dst;
+ int same_remote;
-static void setup_push_simple(struct remote *remote, struct branch *branch, int same_remote)
-{
- if (!branch)
- die(_(message_detached_head_die), remote->name);
+ switch (push_default) {
+ case PUSH_DEFAULT_MATCHING:
+ refspec_append(&rs, ":");
+ return;
- if (same_remote) {
- if (!branch->merge_nr || !branch->merge || !branch->remote_name)
- die(_("The current branch %s has no upstream branch.\n"
- "To push the current branch and set the remote as upstream, use\n"
- "\n"
- " git push --set-upstream %s %s\n"),
- branch->name,
- remote->name,
- branch->name);
- if (branch->merge_nr != 1)
- die(_("The current branch %s has multiple upstream branches, "
- "refusing to push."), branch->name);
-
- /* Additional safety */
- if (strcmp(branch->refname, branch->merge[0]->src))
- die_push_simple(branch, remote);
+ case PUSH_DEFAULT_NOTHING:
+ die(_("You didn't specify any refspecs to push, and "
+ "push.default is \"nothing\"."));
+ return;
+ default:
+ break;
}
- refspec_appendf(&rs, "%s:%s", branch->refname, branch->refname);
-}
-static int is_same_remote(struct remote *remote)
-{
- struct remote *fetch_remote = remote_get(NULL);
- return (!fetch_remote || fetch_remote == remote);
-}
+ branch = branch_get(NULL);
+ if (!branch)
+ die(_(message_detached_head_die), remote->name);
-static void setup_default_push_refspecs(struct remote *remote)
-{
- struct branch *branch = branch_get(NULL);
- int same_remote = is_same_remote(remote);
+ dst = branch->refname;
+ same_remote = !strcmp(remote->name, remote_for_branch(branch, NULL));
switch (push_default) {
default:
- case PUSH_DEFAULT_MATCHING:
- refspec_append(&rs, ":");
- break;
-
case PUSH_DEFAULT_UNSPECIFIED:
case PUSH_DEFAULT_SIMPLE:
- setup_push_simple(remote, branch, same_remote);
+ if (!same_remote)
+ break;
+ if (strcmp(branch->refname, get_upstream_ref(branch, remote->name)))
+ die_push_simple(branch, remote);
break;
case PUSH_DEFAULT_UPSTREAM:
- setup_push_upstream(remote, branch, same_remote);
+ if (!same_remote)
+ die(_("You are pushing to remote '%s', which is not the upstream of\n"
+ "your current branch '%s', without telling me what to push\n"
+ "to update which remote branch."),
+ remote->name, branch->name);
+ dst = get_upstream_ref(branch, remote->name);
break;
case PUSH_DEFAULT_CURRENT:
- setup_push_current(remote, branch);
- break;
-
- case PUSH_DEFAULT_NOTHING:
- die(_("You didn't specify any refspecs to push, and "
- "push.default is \"nothing\"."));
break;
}
+
+ refspec_appendf(&rs, "%s:%s", branch->refname, dst);
}
static const char message_advice_pull_before_push[] =