Reputation: 1225
As a consultant I might have to deal with different Git repositories, BeanStalk, BitBucket, etc. I was wondering how do I configure Tortoisegit to work with a setup like this?
Upvotes: 1
Views: 4990
Reputation: 90496
No matter how is hosted the git repository, all you need is its URL (git://github.com/user/project.git
or https://bitbucket.org/user/project.git
, for example). This is what you give to TortoiseGit on cloning configuration.
For authentication, see for example GitHub docs for SSH setup with TortoiseGit, but you shoud use HTTPS authentication which is simpler.
Upvotes: 6