Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to Import project code from local machine to Azure Repos?

I have existing code on local PC in Visual Studio that I want to Import to the Azure Repos project. I have already created the Project in Azure DevOps. I have used Team Explorer in VS 2017 to Connect to my DevOps project. I don't know how to do the initial Import.

like image 839
Don Baechtel Avatar asked Sep 14 '18 15:09

Don Baechtel


People also ask

How do I import a project into azure DevOps?

Open DevOps and choose the respective project. From Repos click on Files and click on the repositories which is already there, in my case it is "Internal". From the dropdown click on "New repository". A panel will appear in that Choose Repository type as Git.

How do I clone a local repository to Azure DevOps?

From your web browser, open the team project for your Azure DevOps organization, and then choose Repos > Files to open the Files view. In the Files view, choose Clone to launch the Clone Repository popup. Copy the clone URL from the Clone Repository popup.


2 Answers

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 status    git commit -m "initial commit"   git push -u origin master  

Then the project in the local machine will be managed in Azure Git repo.

Note: if the local project has already been managed in a local git repo, then you can skip git init command.

If you are using TFVC repo in Azure Devops, please refer below steps to import the local project to Azure TFVC repo:

  1. connect TFVC with VS

In VS -> team explorer -> Manage Connections -> Add an account -> enter the email address and password for sign in Azure Devops -> select the TFVC repo -> Connect.

enter image description here enter image description here

  1. map TFVC repo in a local directory.

Click Map & Get button to map the TFVC repo and download the files in the specified directory (as C:\Users\Administrator\Source\Workspaces\Git2 in below example).

enter image description here

  1. copy the local project to the mapped directory and checkin changes

Copy your project in the TFVC repo mapped directory -> team explorer -> Source Control Explorer -> click Add items to folder icon -> select all the project files you copied in the mapped directory -> Finish -> Team Explorer -> Pending changes -> checkin the changes.

enter image description here

So the local project will be imported into the TFVC repo in Azure devops.

like image 70
Marina Liu Avatar answered Sep 27 '22 22:09

Marina Liu


Follow below step

Step 1 - Login Azure Devops using microsoft account.

Step 2 - In home page click create project,Provide the project name visibility status.

Step 3 - Now Your project was created then it's redirect to dashboard then select repos from the left menu.

Step 4 - Copy the URL.

Step 5 - Now go to visual studio team explore from local git repositories click Add option.

Step 6 - Create new repo from drive then local path and paste the URL path in second option then click clone.

Step 7 - Enter your Azure DevOps credentials for login.

Step 8 - It will publish your code on the master branch.

Step 9 - On successfully publish the changes your code will be displayed in the Azure Repos file section.

like image 30
Pr0mis PAtel Avatar answered Sep 27 '22 22:09

Pr0mis PAtel