TFS User – Why you need to switch to Git

Not too long ago, TFS and SVN were the only source control I had used. I had a very little experience of distributed source controls like Git. So when I got an opportunity to work on Git on a large scale project for the first time, I had my doubts. But, it did not take me long to realize that why Git so much better than TFS. So, many technical issues we had in our projects were really the limitation of TFS. But due to that limitation, our team ended up spending hundreds of man-hours. If only we had someone to tell us or convince us to use Git as our source control, the life would have been so better. 🙂Even today there are people and teams who have only used TFS as source control due to different reasons. Through this post, I intend to reach out to those individuals/ teams and explain why Git is so much better than TFS.

It’s not easy to look TFS beyond Visual Studio

TFS and Visual Studio are complementary to each other. TFS works great as long as you are working in its limitation and using it within Visual Studio. But, have you tried to check-in through a command line? Or have you tried to use TFS beyond Visual Studio editor? Well, then you would know the experience is less than ideal. What you can do with TFS is mostly limited to what Visual Studio has to offer.

Git, on the other hand, has a rich console support. The Git commands give you full control of source control. Visual Studio also has a Git plugin. But, once you start using Git commands you would probably never go back to the plugin. It also means that you are free to use any editor, even Notepad++ to code. But, you will still get same rich experience with your source control.

Branching in TFS is scary

Any long time TFS user would know what I’m talking about. Branching in TFS is dreaded. I have worked with folks who would anything to avoid creating a TFS branch. In fact, the branching in TFS is usually done only when you are working with multiple releases in parallel. The reason is, TFS creates a separate physical copy of your repository when you create a branch. That means each branch takes additional space on your local disk. This leads to one interesting problem. People tend to merge less often while using TFS. Hence, when you eventually merge you branches it can be a real mess, sometimes a project in itself.

Branching in GIT is not a physical copy but a pointer to commit. It is extremely cheap, lightweight and fast. In fact, as per Git-flow, you create a branch for every feature (or story) you work on. Within your feature branch, you can check-in as many times as you like and then merge onto the mainline branch

Check-in in TFS can be scary and that makes Continuous Integration/Delivery difficult 

Consider this scenario, you are working in a large team, say 50 members.  And your team is following a good practice of gated check-ins to ensure code quality and standards are met before they get checked-in. If each member of your team checks-in at least once in a day and if one gated check-in takes 15 mins, then it means that you may have to wait for hours together to get your changes checked-in. Worst still, if your check-in gets failed due to a merge issue then you need to queue your check-in all over again and wait again!!!

One way to prevent this issue is to check-in less frequently. But, then it also means that you either keep unsaved changes on your local machine or create ugly shelvesets. The longer you wait for your changes to commit, the size of merge conflict also increases.

In Git, one can create a separate branch for each feature you are working on. Additionally, you first commit changes to your local branch and then push it to the remote. Once, you are done with your changes you can merge your changes to the mainline branch by raising a pull-request (PR). This makes Git ideal for large teams and Continous Integration/ Delivery.

Conclusion

I have just highlighted few points why Git is superior to TFS. Please try it out yourself first hand and if you like it try to convince your team to make a switch. One of the easiest ways you can learn more about Git is by contributing to an open source project of your choice on Github. It can be a bit intimidating at first, but I’m sure you won’t regret it. 🙂

 

 


by

Comments

3 responses to “TFS User – Why you need to switch to Git”

  1. Rahul Avatar

    There might be a a few use cases to use TFSVC instead of Git that I can think of. Git doesn’t provide granular control over source code. For example, you can restrict access to a folder or part of code from a user in TFSVC. Being a centraliazed VC, the chances of you modifying the same code as someone else reduces as you can see the changes being made at all times.

    Like

  2. Ankit Vijay Avatar

    Rahul, you are right. There are always few scenarios where TFSVC would work better than Git. But, I would argue that you can have workarounds or alternatives in Git for those scenarios. For example: if you really need a restricted access, you can simply have a separate repository. On your second point, you can still view the changes made by someone else in Git as it gets merged to the mainline build.

    Like

  3. Preeti Lolla Avatar

    Wonderful post.

    Thank you.

    Like

Leave a Reply

A WordPress.com Website.