Visual Studio Online Integration with CodePlex

Is there a way to integrate the Visual Studio Online repository with the CodePlex project in such a way that when updating the code in Visual Studio Online, it reflects and updates the CodePlex project?

+4
source share
1 answer

No, this is not possible in automatic mode.

But as a workaround, you can configure both systems to use Git as the type of repository and use the local Git repository to synchronize between both remote repositories.

To do this, create a new local repository using

git init

Then add two remote controls

git remote add codeplex https://git123.codeplex.com/project
git remote add vso      https://account.visualstudio.com/defaultcollection/_git/Repo

Git, Visual Studio Online CodePlex, , :

git push codeplex master
git push vso master

Git .

CodePlex codeplex, Git.

+6

All Articles