I suppose this must be the zillionth post about how Git is so cool, but I’ll tell you what I love about it:
- Ultra fast commits. Coming from subversion, typing commit and getting a prompt back instantly is so surprising that you double check the first few times.
- Branching! God, you don’t realize how much you miss it until you have fast branching and merging. Without the pain of creating
cp
s, just a simplegit checkout -b branch_name
andgit merge branch_name
and everything just works. - The above was the reason I tried git in the first place. mobME’s an SVN shop and we do the usual trunk, tags, branches dance. When the trunk shapes up to be stable though I can’t seem to do anything on it. I can fork off a new branch in SVN but that’s too painful to even think about. What do I do now?
git clone
it, create a branch, and do regulargit svn rebase
s anddcommit
s. - Oh did I mention bidirectional SVN support? Without which I wouldn’t/couldn’t have switched no matter how much I wanted to try this cool new thing.
But it’s great and it really changes the way you think about VCS. Notice something? I didn’t even talk about distributed source control, and that’s coz even when I use git like I use SVN – committing to a central repo at the end and pulling changes from it, it’s brilliant. I’d definitely want to explore cool stuff like github soon for personal use (some gracious soul gave me an invite some time back).
4 responses to “Loving Git”
Hydrocodone….
Hydrocodone. Easy way to buy hydrocodone online. Opana same effects hydrocodone. Watson hydrocodone tablets. Buy hydrocodone. I took hydrocodone thru entire pregnancy….
Eric: I’ve tried hg, it’s got a better CLI, but it doesn’t have as good a bidirectional SVN bridge, which is a real blocker.
Vysnu –
Its time for you to get your hands dirty with hg:
http://www.selenic.com/mercurial/
You obviously know Trovalds was inspired to dev git from mercurial!
Eric
I too love git and love when my clients use SVN… because I can use git-svn to commit to their server. I am slowly getting into the cvs intergration and am using git-cvs* tools to talk to my client’s CVS server.
Here are some of my favorites:
gitk –all
git commit –amend
git rebase -i
git add -i