Reputation: 15552
If my repo is create by TortoiseGIT, and imported to Eclipse, should i use EGit to operate the repo?
I afraid the repo database will crash due to different client.
Upvotes: 3
Views: 2533
Reputation: 546
You can indeed use different Git clients, I have used SourceTree, Git command line (inside CYGWIN) and EGit on the same project and have never had any issues.
Upvotes: 1
Reputation: 116187
Yes, you can. Unlike some other version control systems, all git clients are using exact same git object store format, and in general it is perfectly safe to use them in parallel.
Upvotes: 3
Reputation: 15919
It should be fine; both are just fronted clients to access the underlying Git repository.
Upvotes: 0