Re: [PATCH] for the SoC15 micro project, Make git -C '' cmd not to barf.

2015-03-06 Thread Matthieu Moy
Prudhvee Narasimha Sadha prudhvi.s...@gmail.com writes:

 Hi,
 here is my patch for the micro project, Please review the code.

Please, read Documentation/SubmittingPatches.

Also, read the comments on the other submission for the same problem on
the list, they also apply to your version.

-- 
Matthieu Moy
http://www-verimag.imag.fr/~moy/
--
To unsubscribe from this list: send the line unsubscribe git in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH] for the SoC15 micro project, Make git -C '' cmd not to barf.

2015-03-05 Thread Prudhvee Narasimha Sadha
Hi,
here is my patch for the micro project, Please review the code.


prudh@prudh-Studio-1569:~/git$ git diff
diff --git a/git.c b/git.c
index 8c7ee9c..364788b 100644
--- a/git.c
+++ b/git.c
@@ -205,6 +205,8 @@ static int handle_options(const char ***argv, int *argc, int
usage(git_usage_string);
}
if (chdir((*argv)[1]))
+   if(*(*argv)[1]==0);
+   else if(chdir((*argv)[1]))
die_errno(Cannot change to '%s', (*argv)[1]);
if (envchanged)
*envchanged = 1;




Thank you,
Prudhvee
--
To unsubscribe from this list: send the line unsubscribe git in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH] for the SoC15 micro project, Make git -C '' cmd not to barf.

2015-03-05 Thread Stefan Beller
On Thu, Mar 5, 2015 at 5:46 PM, Prudhvee Narasimha Sadha
prudhvi.s...@gmail.com wrote:
 Hi,
 here is my patch for the micro project, Please review the code.


 prudh@prudh-Studio-1569:~/git$ git diff

Please see Documentation/SubmittingPatches and maybe have a look
at the format-patch manpage.

Thanks,
Stefan


 diff --git a/git.c b/git.c
 index 8c7ee9c..364788b 100644
 --- a/git.c
 +++ b/git.c
 @@ -205,6 +205,8 @@ static int handle_options(const char ***argv, int *argc, 
 int
 usage(git_usage_string);
 }
 if (chdir((*argv)[1]))
 +   if(*(*argv)[1]==0);
 +   else if(chdir((*argv)[1]))
 die_errno(Cannot change to '%s', 
 (*argv)[1]);
 if (envchanged)
 *envchanged = 1;




 Thank you,
 Prudhvee
 --
 To unsubscribe from this list: send the line unsubscribe git in
 the body of a message to majord...@vger.kernel.org
 More majordomo info at  http://vger.kernel.org/majordomo-info.html
--
To unsubscribe from this list: send the line unsubscribe git in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html