Earlier quoted context omitted.
If you want to learn git, open a terminal and read the man pages, create a dummy repository, push changes to it, pull from it, clone it, merge it, etc. Don't start with something like Gitbox because its hides all the details and more importantly the beauty and elegance of git.
Don't get me wrong Gitbox (and similar 'pretty wrappers') have their place just not as a learning tool. My rule of thumb for 'mission critical software' like version control systems - if you can't access its fully functionality at the shell when logged in to a remote machine then forget about it. Gitbox is great for your workflow until the day you have to actually use git and you have no time to 'actually' learn git.
Gitbox - Everyday git [Mac OS X] interface for human beings
21–30 of 53 posts
Re: Gitbox - Everyday git [Mac OS X] interface for human beings
#22I think it's very possible that these pretty wrappers allow people to hobble along with little to no understanding of how git actually works. If that's the only way that you'll use version control, it's better than nothing. On the other hand, I heartily endorse actually learning how the git model works -- it's not too bad, I promise! . Good places to start: [1] Peepcode's "Git Internals" PDF - $9 - short, sweet, to t…
If you want to learn git, open a terminal and read the man pages, create a dummy repository, push changes to it, pull from it, clone it, merge it, etc. Don't start with something like Gitbox because its hides all the details and more importantly the beauty and elegance of git.
It's a bit like with the compiler: it can be pretty and all, but ultimately I just want to write `make` and get my binary. When I need the details, I know where to find them.
Re: Gitbox - Everyday git [Mac OS X] interface for human beings
#23If you're a developer: Git is faster to work with and more powerful to use from the command line if you take maybe 20 minutes to go through a good tutorial. It took you much longer to learn how to program, and it's worth taking the time to get good at it. If you're a designer, writer, etc: Even though it only takes 20 minutes to learn, if a GUI is what it takes to get you to use version control I guess that is the le…
Re: Gitbox - Everyday git [Mac OS X] interface for human beings
#24If you're a developer: Git is faster to work with and more powerful to use from the command line if you take maybe 20 minutes to go through a good tutorial. It took you much longer to learn how to program, and it's worth taking the time to get good at it. If you're a designer, writer, etc: Even though it only takes 20 minutes to learn, if a GUI is what it takes to get you to use version control I guess that is the le…
I love the cheat gem. sudo gem install cheat Then do : cheat git A great shortcut to all of the common git command sequences.
alias preview='groff -Tps > /tmp/tmp.ps && open -a Preview /tmp/tmp.ps'
So you can do :
cheat git | preview
Re: Gitbox - Everyday git [Mac OS X] interface for human beings
#25I think it's very possible that these pretty wrappers allow people to hobble along with little to no understanding of how git actually works. If that's the only way that you'll use version control, it's better than nothing. On the other hand, I heartily endorse actually learning how the git model works -- it's not too bad, I promise! . Good places to start: [1] Peepcode's "Git Internals" PDF - $9 - short, sweet, to t…
Interfaces are interfaces. CLIs are good for some things, but bad at discoverability and limited in their communication.
Re: Gitbox - Everyday git [Mac OS X] interface for human beings
#26God I wish I understood GIT. The screenshot here doesn't help me in any way. Tempted to stick with gitx. What is the advantage of this software?
Sign up for a github account. It's free and they have help. If you're on Windows, I've been told TortoiseGit is good. http://code.google.com/p/tortoisegit/
Re: Gitbox - Everyday git [Mac OS X] interface for human beings
#27Earlier quoted context omitted.
Then again, git is not a consumer software. Developer should spend some time and learn 5 commands to be productive. But I find this interface interesting, even knowing all command line git this makes browsing history for reviews easy, nice tool.
The command line is very efficient for input of commands, far more so than GUIs (though keyboard shortcuts mitigate this). GUIs are far more efficient for output of infomation though, especially verbose info like history, log files, etc. It surprises me that die-hard CLIers often fail to recognise this.
In this case the best tool, even for experts, is a hybrid tool.
Re: Gitbox - Everyday git [Mac OS X] interface for human beings
#28It seems to me that a lot of popular Unix-originated software seems to have really high learning curves (Vim comes to mind). I wish projects like git spent more efforts on things like GUIs. Does anybody know of any Linux alternatives?
Then again, git is not a consumer software. Developer should spend some time and learn 5 commands to be productive. But I find this interface interesting, even knowing all command line git this makes browsing history for reviews easy, nice tool.
>git is not a consumer software
I don't understand. What does being consumer software or not have to do with learning curves? Do you think developers don't appreciate simplicity or discoverability?
Re: Gitbox - Everyday git [Mac OS X] interface for human beings
#29"Say, you move a file from one folder to another: in the Terminal you would have to “git rm” the old path (the file is gone, so no tab-completion) and “git add” the new path" -- from the homapage. well "git mv" is doing that just fine... It doesnt appear to serious on the homepage of a git product :) http://www.kernel.org/pub/software/scm/git/docs/git-mv.html
Re: Gitbox - Everyday git [Mac OS X] interface for human beings
#30I think it's very possible that these pretty wrappers allow people to hobble along with little to no understanding of how git actually works. If that's the only way that you'll use version control, it's better than nothing. On the other hand, I heartily endorse actually learning how the git model works -- it's not too bad, I promise! . Good places to start: [1] Peepcode's "Git Internals" PDF - $9 - short, sweet, to t…
If you want to learn git, open a terminal and read the man pages, create a dummy repository, push changes to it, pull from it, clone it, merge it, etc. Don't start with something like Gitbox because its hides all the details and more importantly the beauty and elegance of git.
I've had to teach plenty of people how to properly merge files using Git and no one has ever said "oh that makes sense". If a tool can hide the ugliness of merging conflicting files, even a little, it'll help a ton of people get used to using Git.