user4906240
user4906240

Reputation: 625

Installation of GIT Equivalent of Visual SVN

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

Answers (2)

maiorovi
maiorovi

Reputation: 81

is there some GUI utility of GIT

git gui clients

Personally, I find GitKraken quite convenient to use.

I would recommend taking a look at Pro Git book by Scott Chacon.

Upvotes: 2

betaros
betaros

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

Related Questions