Gith Tool
Install Git
$ git --versionClone a Repo on your PC
$ git clone https://user@domain/path.../RepoName$ git branch -a$ git checkout dev$ git pull origin dev$ ls$ git config --list
// configure at list username and email to be able to commit
$ git config --global user.name "IPConvergence"
$ git config --global user.email myemail@icloud.com
// To Commit code on Visual Studio, go on git icon, ... and select commit all then type
commit mainLast updated