For those of us coming from version control systems like Team Foundation Server, Subversion or similar systems with a graphical user interface, using the command line with your version control systems might come off as arcane, unintuitive and not very user-friendly. Still, both Mercurial (Hg) and Git were primarily made for use with the command line.

If you're new to distributed version control systems, I'd recommend you to order the free book (even the printed version is free!) by Eric Sink, Version Control by Example. It has a great workflow comparison of Subversion, Mercurial (Hg) and Git and gives you some insights on why you should use a distributed version control system.

Why you should learn the command line of your DVCS

Next to the advantages of a distributed vcs, using the command line is:

  • blazingly fast
  • very user friendly ( especially Hg )
  • incredibly powerful (especially Git)
  • amazingly flexible (especially Git)

The problem with graphical shells for a command line vcs is that as a new user it's harder to understand the version control system underneath. The graphical shell is trying to shield the user from the internals with "easier" jargon and automatically performing steps for the user ( without the user realizing this).

On the work floor this custom jargon can cause confusion amongst developers using different graphical shells, when in essence they're using the same version control system. Using Git or Hg via the command line gives you an experience closer to the inner workings, and will enable you to use the full power of those systems.

Starting with Mercurial

If you're just starting out with a distributed version control system, I'd recommend using the command line with Mercurial for it's user-friendliness and easier learning curve (see "Other References" for a good example). Joel Spolsky has a wonderful tutorial on Mercurial called Hg Init. You should totally follow it if you're interested in starting out with Hg or any dvcs.

If you're still a bit uneasy about going full command-line, try using the command-line together with TortoiseHg (in my opinion the most mature and user friendly free GUI for Mercurial). This way you can actually see your changes from the command line appear simultaneously in the TortoiseHg Workbench. The Workbench also shows the commands you made in the GUI in the output log, so you can see which command you have to use the next time you want to merge.

Git graph

Having a GUI as a visual guideline and being able to switch easily between GUI and command line ( for the more complicated commits ) helped me a lot during my initial dvcs learning.

Moving to Git

Once you've got the taste of working with the command line via Hg, you should definitely try out Git. It's local branching model is more light-weight and intuitive, and doing complicated commits from the command line is much easier.

With Git's staging model, you can select files individually and even select separate lines of a file for a commit, which means you can now properly commit the lines of code you changed for story/ticket XYZ, and keep your commits smaller and cleaner.

On top of that, Git feels like it was made purely for command line usage. Need an example? Take a look at this graph Git can generates.

![git graph](/blog/content/images/2015/Jan/Graph.png)

I've been using Git at home for about half a year now and 2 months with my employer, and not a single time have I felt the need for a GUI.

Honestly, the first few weeks ( especially with Git ) you're going to do a lot of lookup work. Git still suffers from a major curse of knowledge, especially for us Windows users, so I'm trying to add my bit to help you on your way ;-)

If I've got your attention, hold on to the next post, in which I'll explain in detail how to set up and use Hg and Git with the least possible friction for us Windows users.

Other References to get you started

For a good comparison between the learning curves of Git and Hg, take a look at this answer on stackoverflow, it explains why Git is MacGyver and Mercurial is James Bond

[Git for beginners: The definitive practical guide] on StackOverflow(http://stackoverflow.com/q/315911/367388)

Pro Git, which you can download for free in PDF, mobi or ePub format.