Tambahkan kode yang ada ke git repositori azure

#In the local directory for the root of the project
git init
git remote add origin <URL for Azure Git repo>
git add .
git commit -m 'initial commit'
git push -u origin master
Tough Tern