Tobias
Tobias

Reputation: 2561

Is there a synopsis about how to do certain things with different scm tools?

I'm quite familiar with Subversion, and I use Mercurial and Git as well. Mercurial looks like a friendly tool to me, as it's commandline interface is easy to use for Subversion users; but Git doesn't.

Is there a comparison sheet somewhere, which e.g. allows to see at a glance how to revert local changes for single files, or all, with svn, hg and git commands?

Upvotes: 1

Views: 45

Answers (2)

Vince
Vince

Reputation: 3577

I know of this page, which gives a translation between hg and git:

https://www.mercurial-scm.org/wiki/GitConcepts

Upvotes: 1

Tim
Tim

Reputation: 43314

See the table under this wikipedia page on the subject.

It lists svn. mercurial, git and many more. More specific information about commands can of course be found in the docs on their websites, but at least this shows what similar commands look like in different SCMs.

Upvotes: 1

Related Questions