Hi, I cloned the git repo from 'git://git2.kernel.org/pub/scm/git/git.git'. I had an earlier msysGIT with build environment. I just got into the msys (bash) environment and ran a 'gmake'. It built fine on Windows XP. I thank everyone involved in making git work on windoze. It really makes it a lot more easier to push git as a serious dVCS in the corporate world with development hapenning on different platforms :-) Once I iron out git-p4, hoping to say "Git the hell out of here ... p4" soon. A trivial issue in install: 'gmake install' had a small issue in trying to install non existant 'git-shell.exe'. The following trivial patch on master to Makefile handles that: diff --git a/Makefile b/Makefile index dfed7ba..d5a3327 100644 --- a/Makefile +++ b/Makefile @@ -1365,7 +1365,10 @@ install: all $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(bindir_SQ)' $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(gitexec_instdir_SQ)' $(INSTALL) $(ALL_PROGRAMS) '$(DESTDIR_SQ)$(gitexec_instdir_SQ)' - $(INSTALL) git$X git-upload-pack$X git-receive-pack$X git-upload-archive $X git-shell$X '$(DESTDIR_SQ)$(bindir_SQ)' +ifndef NO_POSIX_ONLY_PROGRAMS + $(INSTALL) git-shell$X '$(DESTDIR_SQ)$(bindir_SQ)' +endif + $(INSTALL) git$X git-upload-pack$X git-receive-pack$X git-upload-archive $X '$(DESTDIR_SQ)$(bindir_SQ)' $(MAKE) -C templates DESTDIR='$(DESTDIR_SQ)' install $(MAKE) -C perl prefix='$(prefix_SQ)' DESTDIR='$(DESTDIR_SQ)' install ifndef NO_TCLTK -dhruva ----- Original Message ---- > From: Johannes Sixt <j.sixt@xxxxxxxxxxxxx> > To: Kevin Yu <yujie052@xxxxxxxxx> > Cc: git@xxxxxxxxxxxxxxx > Sent: Monday, 8 September, 2008 12:38:08 PM > Subject: Re: What's the status of MinGW port. > > Kevin Yu schrieb: > > GIT is a great tool, but I'm running Windows XP. > > It seems like msysgit hasn't been updated for a long time, > > neither has the mingw.git branch. > > Is there any plan to create a native version of GIT on MS Windows? > > There are no plans anymore to create such a thing. > > It is already there: http://code.google.com/p/msysgit/ > > If the lack of activity is worrysome to you, you could help create a > release tarball for 1.6..0(.x). > > -- Hannes > > -- > To unsubscribe from this list: send the line "unsubscribe git" in > the body of a message to majordomo@xxxxxxxxxxxxxxx > More majordomo info at http://vger.kernel.org/majordomo-info.html Get an email ID as yourname@xxxxxxxxx or yourname@xxxxxxxxxxxxxxx Click here http://in.promos.yahoo.com/address -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html