-1

I beginner in SVN and GIT and I have want a GUI git control in Ubuntu, please suggest me. I description that use of this GUI on Github.

Digicom
  • 61

2 Answers2

1

Another ting to mention is the git gui. This can be started from the terminal: git gui

If that didn't work, you may install the git-all package:

sudo apt-get update && sudo apt-get install git-all

and when the installation is complete, run the git gui again.

Good luck using git, you may find it confusing in the begining, but it's worth learning and will be usefull for sure!

magnusnn
  • 136
0

My prefered git gui is "SmartGit" (http://www.syntevo.com/smartgit/) because you can use the "gitflow". Since you've said that your beginner, you should start with learning "gitflow". It will help you afterwards... your coding will be "Agile" ready. Here is a basic course on "gitflow" (http://danielkummer.github.io/git-flow-cheatsheet/).

Have fun!

PHil357
  • 16
  • 1