Yeah, so git is good.
Late Adopter I'm a late adopter of almost everything. Being a long time "windows guy" I typically wait at least 2 years after a new version of windows is released before upgrading. I am on Vista...
View ArticleA few git-svn Tips
clone a remote svn repo and it's branches and tags git-svn clone -T trunk -b branches -t tags -r 1124:HEAD https://mysvnserver/myproj this will bring down all history from revision 1124 onward intoa...
View Articlegit gotcha
Just thought I'd post about a problem I was having with git concerning the setup and cloning of a remote repository. Basically, if you've setup a repository on a remote machine, and want to clone from...
View ArticleTip: mimic user file permissions to group
I ran into a situation the other day where I had setup a git repository for myself and wanted to grant read/write access to another fellow who is helping out on the project. He could pull from the...
View Articlegit-svn gotcha
I was having problems with the following setup the other day: [remote deveoper] <===>; [shared git repo] <===> [me] <===> [client's svn repo] So my remote developer and I push and...
View ArticleMore git goodies
If you are in a subdirectory of your project and want to know where the .git directory lives above you: git rev-parse --git-dir My coworker Guillermo Castro (aka the JavaGeek) found this one by pure...
View ArticleHow I setup my git repos
I have a directory on my linux box for git repositories and as often as not I need to share these with my fellow developers. Here are the steps I take in setting up a new developer and project. Setup...
View Article