From: Bence Ferdinandy <bence@ferdinandy.com>
To: git@vger.kernel.org
Cc: johannes.schindelin@gmx.de,
Bence Ferdinandy <bence@ferdinandy.com>,
cc@mail.ferdinandy.com,
/tmp/FUboFpyPuH/0001-fetch-set-head-with-set-head-option.patch@mail.ferdinandy.com
Subject: [RFC PATCH 1/2] fetch: set-head with --set-head option
Date: Tue, 10 Sep 2024 22:24:58 +0200 [thread overview]
Message-ID: <20240910203129.2251090-2-bence@ferdinandy.com> (raw)
In-Reply-To: <20240910203129.2251090-1-bence@ferdinandy.com>
When cloning a repository refs/remotes/origin/HEAD is set automatically.
In contrast, when using init, remote add and fetch to set a remote, one
needs to call remote set-head --auto to achieve the same result.
Add a --set-head option to git fetch to automatically set heads on
remotes.
Signed-off-by: Bence Ferdinandy <bence@ferdinandy.com>
---
builtin/fetch.c | 29 ++++++++++++++++++++++++-----
builtin/remote.c | 5 +++++
2 files changed, 29 insertions(+), 5 deletions(-)
diff --git a/builtin/fetch.c b/builtin/fetch.c
index b2b5aee5bf..6392314c6a 100644
--- a/builtin/fetch.c
+++ b/builtin/fetch.c
@@ -1961,8 +1961,19 @@ static int fetch_finished(int result, struct strbuf *out,
return 0;
}
-static int fetch_multiple(struct string_list *list, int max_children,
- const struct fetch_config *config)
+static int run_set_head(const char *name)
+{
+ struct child_process cmd = CHILD_PROCESS_INIT;
+ strvec_push(&cmd.args, "remote");
+ strvec_push(&cmd.args, "set-head");
+ strvec_push(&cmd.args, "--auto");
+ strvec_push(&cmd.args, name);
+ cmd.git_cmd = 1;
+ return run_command(&cmd);
+}
+
+static int fetch_multiple(struct string_list *list, int max_children, int set_head,
+ const struct fetch_config *config)
{
int i, result = 0;
struct strvec argv = STRVEC_INIT;
@@ -2014,6 +2025,8 @@ static int fetch_multiple(struct string_list *list, int max_children,
error(_("could not fetch %s"), name);
result = 1;
}
+ if (set_head && run_set_head(name))
+ result = 1;
}
strvec_clear(&argv);
@@ -2062,7 +2075,7 @@ static inline void fetch_one_setup_partial(struct remote *remote)
}
static int fetch_one(struct remote *remote, int argc, const char **argv,
- int prune_tags_ok, int use_stdin_refspecs,
+ int prune_tags_ok, int set_head, int use_stdin_refspecs,
const struct fetch_config *config)
{
struct refspec rs = REFSPEC_INIT_FETCH;
@@ -2135,9 +2148,12 @@ static int fetch_one(struct remote *remote, int argc, const char **argv,
refspec_clear(&rs);
transport_disconnect(gtransport);
gtransport = NULL;
+ if (set_head && run_set_head(remote -> name))
+ exit_code = 1;
return exit_code;
}
+
int cmd_fetch(int argc, const char **argv, const char *prefix)
{
struct fetch_config config = {
@@ -2154,6 +2170,7 @@ int cmd_fetch(int argc, const char **argv, const char *prefix)
struct string_list list = STRING_LIST_INIT_DUP;
struct remote *remote = NULL;
int all = -1, multiple = 0;
+ int set_head = 0;
int result = 0;
int prune_tags_ok = 1;
int enable_auto_gc = 1;
@@ -2171,6 +2188,8 @@ int cmd_fetch(int argc, const char **argv, const char *prefix)
OPT__VERBOSITY(&verbosity),
OPT_BOOL(0, "all", &all,
N_("fetch from all remotes")),
+ OPT_BOOL(0, "set-head", &set_head,
+ N_("auto set remote HEAD")),
OPT_BOOL(0, "set-upstream", &set_upstream,
N_("set upstream for git pull/fetch")),
OPT_BOOL('a', "append", &append,
@@ -2436,7 +2455,7 @@ int cmd_fetch(int argc, const char **argv, const char *prefix)
trace2_region_leave("fetch", "setup-partial", the_repository);
}
trace2_region_enter("fetch", "fetch-one", the_repository);
- result = fetch_one(remote, argc, argv, prune_tags_ok, stdin_refspecs,
+ result = fetch_one(remote, argc, argv, prune_tags_ok, set_head, stdin_refspecs,
&config);
trace2_region_leave("fetch", "fetch-one", the_repository);
} else {
@@ -2459,7 +2478,7 @@ int cmd_fetch(int argc, const char **argv, const char *prefix)
/* TODO should this also die if we have a previous partial-clone? */
trace2_region_enter("fetch", "fetch-multiple", the_repository);
- result = fetch_multiple(&list, max_children, &config);
+ result = fetch_multiple(&list, max_children, set_head, &config);
trace2_region_leave("fetch", "fetch-multiple", the_repository);
}
diff --git a/builtin/remote.c b/builtin/remote.c
index 0acc547d69..35c54dd103 100644
--- a/builtin/remote.c
+++ b/builtin/remote.c
@@ -1536,9 +1536,12 @@ static int get_remote_default(const char *key, const char *value UNUSED,
static int update(int argc, const char **argv, const char *prefix)
{
int i, prune = -1;
+ int set_head = 0;
struct option options[] = {
OPT_BOOL('p', "prune", &prune,
N_("prune remotes after fetching")),
+ OPT_BOOL(0, "set-head", &set_head,
+ N_("auto set remote HEAD")),
OPT_END()
};
struct child_process cmd = CHILD_PROCESS_INIT;
@@ -1552,6 +1555,8 @@ static int update(int argc, const char **argv, const char *prefix)
if (prune != -1)
strvec_push(&cmd.args, prune ? "--prune" : "--no-prune");
+ if (set_head)
+ strvec_push(&cmd.args, "--set-head");
if (verbose)
strvec_push(&cmd.args, "-v");
strvec_push(&cmd.args, "--multiple");
--
2.46.0
next prev parent reply other threads:[~2024-09-10 20:37 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-10 20:24 [RFC PATCH 0/2] set remote/HEAD with fetch Bence Ferdinandy
2024-09-10 20:24 ` Bence Ferdinandy [this message]
2024-09-11 6:54 ` [RFC PATCH 1/2] fetch: set-head with --set-head option Jeff King
2024-09-11 12:16 ` Bence Ferdinandy
2024-09-10 20:24 ` [RFC PATCH 2/2] set-head: do not update if there is no change Bence Ferdinandy
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20240910203129.2251090-2-bence@ferdinandy.com \
--to=bence@ferdinandy.com \
--cc=/tmp/FUboFpyPuH/0001-fetch-set-head-with-set-head-option.patch@mail.ferdinandy.com \
--cc=cc@mail.ferdinandy.com \
--cc=git@vger.kernel.org \
--cc=johannes.schindelin@gmx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox