I am trying to use appcenter with azuredevops services.
How do I import my new shiny solution in VS2017 "HelloWorld" into AzureDevOps? Any walkthrough?
I can make it work if
But Cannot find a way to import a repository from Visual studio into AzureDevOps.
Links that i saw but did not work .Also outdated with azuredevops.
How to Import project code from local machine to Azure Repos?
You should be following these steps to add your local git repo to Azure DevOps
git remote add origin <url-from-Azure repos>
Then you should be able to push your local content to Azure repos..you can use below commands
git add .
git commit -m 'your comment'
git push -u origin master