|
GitCheetah
About git-cheetah as a submodule of msysGit
Git-CheetahTortoiseCVS (and later TortoiseSVN) set the scene for convenient source code management on Windows. Not to be left behind, git has the beginnings of a clone, called git-cheetah. (Note: in the meantime, people have started their own extensions, since duplicating efforts is so much fun.) This page is about setting up git-cheetah as a submodule of msysGit. How to compile/install it in msysGitThe easiest way is to install msysGit-netinstall, then
Then you should "make install-user" in /src/git-cheetah. If you want to get the bleeding edge of development (which picked up some speed again thanks to Kirill & Christian), do this: $ cd /src/git-cheetah
$ git checkout -t origin/masterand to keep up-to-date, just "git pull" in that directory. Cherry PickingBy default, your local git-cheetah repo is (and should) be tracking http://repo.or.cz/w/git-cheetah.git. However, it may also be helpful to cherry-pick from Kirill's work. Here's a recipe to grab "foo" from his fork:
$ git remote add kirill git://repo.or.cz/git-cheetah/kirill.git
$ git fetch kirill$ git cherry-pick foo Of course, this recipe works for any remote repo, not just Kirill's fork on repo.or.cz. In SummaryIt would be really awesome if you just scratched your itches, and submit patches back to git-cheetah! |
Sign in to add a comment