Tag: GitHub

  • Git Command line Options

    Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency. Git is commonly used for open source and commercial software development. GitHub is a web-based service for version control using Git. Basically, it is a social code-hosting platform for developers. You can…

  • GitHub – Administration

    To understand GitHub, you must first have an understanding of Git. Git is an open-source version control system and GitHub is a cloud-based Git repository hosting service. Essentially, it makes it a lot easier for individuals and teams to use Git for version control and collaboration. In this article, we will cover the administration of…

  • Integration of Git into Visual Studio

    Nearly all versions of the Visual Studio IDE provide integration features for source control. Git Client is directly built into all the latest versions of Visual Studio IDE. This documentation is about using git in Visual Studio 2019 version. Git Cloning Process: – 1. All features relevant to Git are available at the ‘Team Explorer’ section.…

  • Migration Process of SVN to Git

    Subversion (SVN) is a central version control system (VCS) while Git is a distributed version control system. SVN does some things very well and has been a great source control system. But the features that Git brings – distribution, performance, easy branches, easy merges, stash – are hard to pass up. These two tools have…

  • Migrating TFS 2013 Version Control to TFS Git with changeset history

    There are several articles on the web describing the migration technique with minimal details. This article is an effort to provide the complete information to successfully migrate from the TFS VC to the TFS GIT VC. TFS ‘out-of-the-box’ does not provide any tools to export import source code or changesets. Usually, if we want to…