Skip to main content

Posts

Showing posts from 2021

Azure Repo Step by Step Guide- Move / Migrate Existing/New Repository to Azure Repo

  Move/Migrate your existing/new  repository to Azure Repo   Create Your   New repository in my case I have created “ FabrikamFiber ” We will use git command to push our local repository to Azure Repo. Open command prompt and go to your local code directory : In my case it will be “C:\Ashok\Test\FabrikamFiber>” Local code directory Run the   following command step by step > git init > git remote add FabrikamFiber https://ITS@dev.azure.com/DEMO-Account/ /_git/ FabrikamFiber   (get this path from step 2. Push existing repository using command line) Change origin in actual command with your repo name > git push -u FabrikamFiber –all    Change origin in actual   command with your repo name   This should push your code repository to specified Azure repo. Please refer to following screen for your reference.   In case if you get following   error while executing push command.   No refs in common and none specified; doing nothi