Skip to content

Instantly share code, notes, and snippets.

@rascoop
Created April 2, 2020 20:19
Show Gist options
  • Save rascoop/ed2c3532c574a0446bea76dcd6caf162 to your computer and use it in GitHub Desktop.
Save rascoop/ed2c3532c574a0446bea76dcd6caf162 to your computer and use it in GitHub Desktop.
Initial Prep to import existing code folder into azure repo
#If you are using Git repo in Azure Devops, please refer below commands to import projects to Azure Git repo:
#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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment