Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2021-07-14 02:52:49 +0300
committerJunio C Hamano <gitster@pobox.com>2021-07-14 02:52:49 +0300
commit07e230d762bde9ce5fa41384efb8caed4c7de684 (patch)
tree9e31c6605e7288757ea438d75d1c60f91c1cff53 /builtin
parent5d96bcbc0602f96ccee3111ff93b05389cd6eae6 (diff)
parent90cfb2666b5913e0be4ffb84630866287dde4f9a (diff)
Merge branch 'fc/push-simple-updates'
Some code and doc clarification around "git push". * fc/push-simple-updates: doc: push: explain default=simple correctly push: remove unused code in setup_push_upstream() push: simplify setup_push_simple() push: reorganize setup_push_simple() push: copy code to setup_push_simple() push: hedge code of default=simple push: rename !triangular to same_remote
Diffstat (limited to 'builtin')
-rw-r--r--builtin/push.c48
1 files changed, 32 insertions, 16 deletions
diff --git a/builtin/push.c b/builtin/push.c
index 194967ed79..29fea70ff1 100644
--- a/builtin/push.c
+++ b/builtin/push.c
@@ -186,7 +186,7 @@ static const char message_detached_head_die[] =
" git push %s HEAD:<name-of-remote-branch>\n");
static void setup_push_upstream(struct remote *remote, struct branch *branch,
- int triangular, int simple)
+ int same_remote)
{
if (!branch)
die(_(message_detached_head_die), remote->name);
@@ -201,18 +201,12 @@ static void setup_push_upstream(struct remote *remote, struct branch *branch,
if (branch->merge_nr != 1)
die(_("The current branch %s has multiple upstream branches, "
"refusing to push."), branch->name);
- if (triangular)
+ 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);
- if (simple) {
- /* Additional safety */
- if (strcmp(branch->refname, branch->merge[0]->src))
- die_push_simple(branch, remote);
- }
-
refspec_appendf(&rs, "%s:%s", branch->refname, branch->merge[0]->src);
}
@@ -223,16 +217,41 @@ static void setup_push_current(struct remote *remote, struct branch *branch)
refspec_appendf(&rs, "%s:%s", branch->refname, branch->refname);
}
-static int is_workflow_triangular(struct remote *remote)
+static void setup_push_simple(struct remote *remote, struct branch *branch, int same_remote)
+{
+ if (!branch)
+ die(_(message_detached_head_die), remote->name);
+
+ 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);
+ }
+ 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);
+ return (!fetch_remote || fetch_remote == remote);
}
static void setup_default_push_refspecs(struct remote *remote)
{
struct branch *branch = branch_get(NULL);
- int triangular = is_workflow_triangular(remote);
+ int same_remote = is_same_remote(remote);
switch (push_default) {
default:
@@ -242,14 +261,11 @@ static void setup_default_push_refspecs(struct remote *remote)
case PUSH_DEFAULT_UNSPECIFIED:
case PUSH_DEFAULT_SIMPLE:
- if (triangular)
- setup_push_current(remote, branch);
- else
- setup_push_upstream(remote, branch, triangular, 1);
+ setup_push_simple(remote, branch, same_remote);
break;
case PUSH_DEFAULT_UPSTREAM:
- setup_push_upstream(remote, branch, triangular, 0);
+ setup_push_upstream(remote, branch, same_remote);
break;
case PUSH_DEFAULT_CURRENT: