Reputation: 625
I am an SVN user and we are using visual SVN for the version control. Now I have to shift to GIT.
When I installed SVN, I only needed to install the visual SVN on my server.
My questions are :
Note:
I will have more then fifty users and a server on which it will be installed.
Upvotes: 0
Views: 1729
Reputation: 81
is there some GUI utility of GIT
Personally, I find GitKraken quite convenient to use.
I would recommend taking a look at Pro Git book by Scott Chacon.
Upvotes: 2
Reputation: 602
You could use SmartGit if you want to organize multiple repositories, but nearly every IDE has a git client already installed, like Visual Studio, Eclipse or products from Jetbrains. So you could use that and have no need for an extra tool.
If you want to have a central server with git it would be enough to just install git and run
git --bare init
For more information you might watch at the official documentation.
Upvotes: 0