I'm thinking about using git submodules to retrieve dependencies of my git repository instead of committing binary files to my main repository (effectively only committing binary files to a different repository which I will be able to purge often --by purge I mean delete history to save space on the server...).

Problem is, how to call the GIT executable using MSBuild? In the developer machine git should already be in the path, but in the buildagents the path to git executable is going to come from an environment variable. How to figure out the git path then at compile time using MSBuild? I want to do a git pull of the git submodule every time I build.

Thanks

link|improve this question

17% accept rate
feedback

1 Answer

You read the environment variables in MSBuild much the same way you would a property

So if the environment variable being passed is GIT_PATH, you can access it using $(GIT_PATH)

Supply this to the exec task along with the appropriate arguments

link|improve this answer
Yeh thanks but what to do to check first if "git" command is already accessible, before checking the env var? – knocte Oct 24 '11 at 18:01
@knocte You can do ( again with exec task) a where git and see if git is already on PATH – manojlds Oct 24 '11 at 18:33
Thanks manojlds! I'll take a look at what you propose. – knocte Oct 25 '11 at 9:28
manojlds, I still can't figure out how to do this, because "where git" doesn't generate a different exitCode than a call that doesn't return a valid path (for example "where somecommandthatdoesnotexist", still returns an exitCode==1). – knocte Jan 20 at 18:40
So what I just want to do with MSBuild is the following, in pseudocode: var gitPath = Where("git"); if (String.IsNullOrEmpty(gitPath)) gitPath = Environment.GetVariable("GITPATH"); if (String.IsNullOrEmpty(gitPath)) throw new Exception ("git is not installed; install it or specify its path in the GITPATH env var") var p = new Process(); p.StartInfo.FileName = gitPath; p.StartInfo.Arguments = "foo"; p.Start (); – knocte Jan 20 at 18:44
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.