I have very close to zero experience of comandline-operation(copy paste from tutorials pretty much). What are the pros and cons of gitX vs gitNub from aspects such as Efficiency, learnabillity/learning curve, feature richness and ofcourse esthetics! I have no experience with git.

link|improve this question

78% accept rate
Unless I've missed something, you're asking to compare a git GUI with a git hosting service. – Jefromi Nov 5 '10 at 15:28
Same here. GitX is GUI for your local repository where you can see what you changed (diff), commit it and see the history. GitHub is a web application where you can see the history as well, but do not perform commits. But here you have you own wiki, issue tracking and code sharing with other developers. My tip: Use both ;) – ZeissS Nov 5 '10 at 15:32
Further clarification: GitHub hosts a repository for you, and will give you some web-based interaction (e.g. browse history). GitX lets you interact with your local repository, which will be pushing to and fetching from the one on GitHub. – Jefromi Nov 5 '10 at 15:41
If you're looking for a git UI Smart Git is the best one I've seen and I believe it works on all 3 major platforms. – Andrew Myers Nov 5 '10 at 16:31
2  
Do you mean GitX vs. GitNub? Looks so, since you used the gitnub tag... github.com/Caged/gitnub – mipadi Nov 5 '10 at 17:03
show 3 more comments
feedback

3 Answers

I tried to install GitNub and I given up ... Anyway as they are both Git front end, they should have the same concept (git ones) and so be roughly equivalent in term of learning curves and feature. Personaly I'm quite happy with GitX and would be probably be too with GitNub if I could install it in less than 2mn. Anyway , for a better git experience learn the commands ;-)

link|improve this answer
Does it provide all nessesary basic functionality? – Kristoffer Nolgren Nov 19 '10 at 19:54
As far as I know, no. Some basic command as clone, and push etc , needs to be done "manually". Gitx provides mostly commands that feel better with a GUI , i.e. visual related stuff (as browsing tree, diff etc). For command like git clone , where you need to type anyway a URL there is no need to use a GUI for that (and where I need to type something I prefer to do in a terminal rather than in text field which usuall is to small). I guess that's the same anyway with GitNub. – mb14 Nov 22 '10 at 10:23
feedback

I use GitX for some tasks and to have an overview of my projects but in my opinion now would be a very good time for you to start using the command line and getting used to it little by little.

There are very few Git commands to learn in order to have a good Git work-flow and it's worth the initial trouble.

I used to be intimidated by by the command line but now feel very comfortable with it. If an idiot such as myself can do it, anybody can do it.

link|improve this answer
feedback

I would strongly recommend that you get some expertise with Git.

Read chapters 1,2 and 3. With that you will have a solid understanding of what the gui are doing. I will take more or less 1 h.

http://book.git-scm.com/

As for the question, I use Gitx on Mac. It is quite good. It allows you to cherry pick lines in a file to commit ( and not commit other lines in the same file).

I am an intermediate Git user. I use Gitx mainly for cherry picking files to commit since it is more easy to select the files from a list than to git add app/controller/... and also I like to write detailed commit messages and it is easier in a GUI than in command line (line breaks and such).

Of course, if you want to add everything, just do a 'git commit -a -m', no need to use GUI.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.