git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] branch.c: change install_branch_config() to use skip_prefix()
@ 2014-03-02 11:52 Guanglin Xu
  2014-03-02 14:01 ` Jacopo Notarstefano
  0 siblings, 1 reply; 3+ messages in thread
From: Guanglin Xu @ 2014-03-02 11:52 UTC (permalink / raw)
  To: git

GSoC2014 Microproject: according to the idea#2 for microprojects, change install_branch_config() to use skip_prefix() and make it conform to the usage of previous starts_with().

Signed-off-by: Guanglin Xu <mzguanglin@gmail.com>
---
 branch.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/branch.c b/branch.c
index 723a36b..ca4e824 100644
--- a/branch.c
+++ b/branch.c
@@ -50,7 +50,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;
-	int remote_is_branch = starts_with(remote, "refs/heads/");
+	int remote_is_branch = (NULL != skip_prefix(remote ,"refs/heads/"));
 	struct strbuf key = STRBUF_INIT;
 	int rebasing = should_setup_rebase(origin);
 
-- 
1.9.0

Hi,
I am Guanglin Xu. I plan to apply for GSoC 2014.

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

* Re: [PATCH] branch.c: change install_branch_config() to use skip_prefix()
  2014-03-02 11:52 [PATCH] branch.c: change install_branch_config() to use skip_prefix() Guanglin Xu
@ 2014-03-02 14:01 ` Jacopo Notarstefano
  2014-03-02 16:01   ` Guanglin Xu
  0 siblings, 1 reply; 3+ messages in thread
From: Jacopo Notarstefano @ 2014-03-02 14:01 UTC (permalink / raw)
  To: Guanglin Xu; +Cc: Git Mailing List

The part about this being a GSoC microproject should go below the
three dashes, since it's not information that needs to
 be recorded in the codebase.

On Sun, Mar 2, 2014 at 12:52 PM, Guanglin Xu <mzguanglin@gmail.com> wrote:
> GSoC2014 Microproject: according to the idea#2 for microprojects, change install_branch_config() to use skip_prefix() and make it conform to the usage of previous starts_with().
>
> Signed-off-by: Guanglin Xu <mzguanglin@gmail.com>
> ---
>  branch.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/branch.c b/branch.c
> index 723a36b..ca4e824 100644
> --- a/branch.c
> +++ b/branch.c
> @@ -50,7 +50,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;
> -       int remote_is_branch = starts_with(remote, "refs/heads/");
> +       int remote_is_branch = (NULL != skip_prefix(remote ,"refs/heads/"));
>         struct strbuf key = STRBUF_INIT;
>         int rebasing = should_setup_rebase(origin);
>
> --
> 1.9.0
>
> Hi,
> I am Guanglin Xu. I plan to apply for GSoC 2014.
> --
> To unsubscribe from this list: send the line "unsubscribe git" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH] branch.c: change install_branch_config() to use skip_prefix()
  2014-03-02 14:01 ` Jacopo Notarstefano
@ 2014-03-02 16:01   ` Guanglin Xu
  0 siblings, 0 replies; 3+ messages in thread
From: Guanglin Xu @ 2014-03-02 16:01 UTC (permalink / raw)
  Cc: Git Mailing List

Hi Jacopo,

Thanks for your comments. I just update this PATCH as v2. I appreciate
more comments from you and others in the new thread.

Regards,

Guanglin

2014-03-02 22:01 GMT+08:00 Jacopo Notarstefano <jacopo.notarstefano@gmail.com>:
> The part about this being a GSoC microproject should go below the
> three dashes, since it's not information that needs to
>  be recorded in the codebase.
>
> On Sun, Mar 2, 2014 at 12:52 PM, Guanglin Xu <mzguanglin@gmail.com> wrote:
>> GSoC2014 Microproject: according to the idea#2 for microprojects, change install_branch_config() to use skip_prefix() and make it conform to the usage of previous starts_with().
>>
>> Signed-off-by: Guanglin Xu <mzguanglin@gmail.com>
>> ---
>>  branch.c | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/branch.c b/branch.c
>> index 723a36b..ca4e824 100644
>> --- a/branch.c
>> +++ b/branch.c
>> @@ -50,7 +50,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;
>> -       int remote_is_branch = starts_with(remote, "refs/heads/");
>> +       int remote_is_branch = (NULL != skip_prefix(remote ,"refs/heads/"));
>>         struct strbuf key = STRBUF_INIT;
>>         int rebasing = should_setup_rebase(origin);
>>
>> --
>> 1.9.0
>>
>> Hi,
>> I am Guanglin Xu. I plan to apply for GSoC 2014.
>> --
>> To unsubscribe from this list: send the line "unsubscribe git" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2014-03-02 16:01 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-02 11:52 [PATCH] branch.c: change install_branch_config() to use skip_prefix() Guanglin Xu
2014-03-02 14:01 ` Jacopo Notarstefano
2014-03-02 16:01   ` Guanglin Xu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).