All tags

Posts tagged: #git

Poll svn server for changes with git clone

0 minute read
Just for convenience, paste this in a git bash window: while true; do date; echo "Polling svn server..."; git svn fetch;echo "Sleeping."; sleep 300; done Then just refresh your fa…
Read More

Git, Windows and Line endings

5 minute read
I have come to the unfortunate conclusion that git is not the perfect tool for teams developing exclusively on Windows. And by that I mean, I cannot recommend it unconditionally as I would like to be …
Read More

Multiple working folders for git on Windows XP

2 minute read
Multiple working folders for git on Windows XP (lucky me) It is assumed that you have a git working copy of your project already in place at C:\code\myproject\ and that you want another copy of your p…
Read More

configuring kdiff3 as a mergetool in msysgit

1 minute read
How to configure kdiff3 as a mergetool in msysgit. (I think if you install kdiff3 before msysgit it is picked up automatically, if not, do the following after installing both). In git bash: git config…
Read More

openlayers svn into git

1 minute read
Initial clone: git svn clone -T trunk/openlayers/ -t tags/openlayers/ -b branches/openlayers/ http://svn.openlayers.org/ openlayers.git "http://svn.openlayers.org/tags/openlayers/docs-2.8/" is in the …
Read More

git-svn imports for open source projects

0 minute read
I've just written a lengthy open letter to github in the hope that they will support continuous centralized imports from svn to git. If they don't wish to rise to the challenge (and I wouldn't hold it…
Read More