Git development
 help / color / mirror / Atom feed
* [PATCH v3] branch.c: change install_branch_config() to use skip_prefix()
@ 2014-03-03  2:24 Guanglin Xu
  2014-03-03  5:30 ` He Sun
  2014-03-03  5:39 ` He Sun
  0 siblings, 2 replies; 4+ messages in thread
From: Guanglin Xu @ 2014-03-03  2:24 UTC (permalink / raw)
  To: git

to avoid a magic code of 11.

Helped-by: Eric Sunshine <sunsh...@sunshineco.com>
Helped-by: Jacopo Notarstefano <jaco...@gmail.com>
Signed-off-by: Guanglin Xu <mzguanglin@gmail.com>
---

This is an implementation of the idea#2 of GSoC 2014 microproject.

 branch.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/branch.c b/branch.c
index 723a36b..3e2551e 100644
--- a/branch.c
+++ b/branch.c
@@ -49,7 +49,7 @@ static int should_setup_rebase(const char *origin)
 
 void install_branch_config(int flag, const char *local, const char *origin, const char *remote)
 {
-	const char *shortname = remote + 11;
+	const char *shortname = skip_prefix(remote ,"refs/heads/");
 	int remote_is_branch = starts_with(remote, "refs/heads/");
 	struct strbuf key = STRBUF_INIT;
 	int rebasing = should_setup_rebase(origin);
-- 
1.9.0

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-03-03  6:20 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-03  2:24 [PATCH v3] branch.c: change install_branch_config() to use skip_prefix() Guanglin Xu
2014-03-03  5:30 ` He Sun
2014-03-03  5:39 ` He Sun
2014-03-03  6:20   ` Guanglin Xu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox