On Tue, Jun 3, 2008 at 8:08 PM, Roger Pack wrote: > >> Now that's curious! When I try to use git from my command-line, it exits >> out the cmd window after it finishes. > Yeah that's what mine does, too. So I'm forced to use the git bash prompt :)
As Edward said up-thread, this bug will be fixed in the next release. Until the next release is available, you can crack open /Program Files/git/cmd/git.cmd and modify the line exit %ErrorLevel% to read exit /b %ErrorLevel% (ie. Add the /b switch to the exit line) Peter Harris
