Cheung
Cheung

Reputation: 15552

Can i use TortoiseGIT And Eclipse EGit on same Repo?

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

Answers (3)

Mark Howard
Mark Howard

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

mvp
mvp

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

PherricOxide
PherricOxide

Reputation: 15919

It should be fine; both are just fronted clients to access the underlying Git repository.

Upvotes: 0

Related Questions