Posts

Showing posts from February, 2018

Get Started with GIT Repository and VSTS

Image
This article cover steps required for using GIT Repository with Visual Studio Team Services (VSTS) First question, what is the GIT:  GIT is a distributed version control system, which means your local copy of code is a complete version control repository, and is quickly becoming the standard for version control. These fully functional local repositories make it easy to work remotely or offline. You commit your work locally, and then sync your copy of repository with the copy in the server. Every time you edit and save your work, GIT creates a commit which is a snapshot of all your files at a point in time. Commits create links to other commits which forms a graph of your development history. In GIT, commits are identified by a unique cryptographic hash of the contents of commit. Now because everything is hashed, it is impossible to make changes, lose information or corrupt files without GIT detecting it. Second Question, what is a version control:  They are the sof...