This command works to get the files and compile them:
git clone a-valid-git-url
for example:
git clone git://cfdem.git.sour
If Existing Project Solution is planned to move on TSF in VS Code:
open Terminal and run following commands:
Initialize git in that folder (root Directory)
git init
Add Git
git add .
Link your TSf/Git to that Project - {url} replace with your git address
git remote add origin {url}
Commit those Changes:
git commit -m "initial commit"
Push - I pushed code as version1 you can use any name for your branch
git push origin HEAD:Version1