Moving project to my worksapce...
-
I have an existing project stored on Visual Studio Online. I'm planning some changes and thought to move it to CP's workspace... Two questions I have: 1. The git part will be accessible (with r/o) two everyone - like in GitHub? 2. There is a known way to do the moving?
I'm not questioning your powers of observation; I'm merely remarking upon the paradox of asking a masked man who he is. (V)
-
I have an existing project stored on Visual Studio Online. I'm planning some changes and thought to move it to CP's workspace... Two questions I have: 1. The git part will be accessible (with r/o) two everyone - like in GitHub? 2. There is a known way to do the moving?
I'm not questioning your powers of observation; I'm merely remarking upon the paradox of asking a masked man who he is. (V)
- Yes, currently the only possible scenario is that all repos are visible publicly with r/o access and the owner (+ other members listed by owner) have r/w access. Other scenarios may be possible in future as well. 2) About last week we've released the git importer functionality, so after creating new repo you can import content from any other publicly accessible repo. GitHub integration is also added to allow importing private repos from GitHub. At the moment no other service has such integration, but the list will probably grow over time. Better integration with VS Online looks like a natural extension for us, too.
-
- Yes, currently the only possible scenario is that all repos are visible publicly with r/o access and the owner (+ other members listed by owner) have r/w access. Other scenarios may be possible in future as well. 2) About last week we've released the git importer functionality, so after creating new repo you can import content from any other publicly accessible repo. GitHub integration is also added to allow importing private repos from GitHub. At the moment no other service has such integration, but the list will probably grow over time. Better integration with VS Online looks like a natural extension for us, too.
Great - thank you...
I'm not questioning your powers of observation; I'm merely remarking upon the paradox of asking a masked man who he is. (V)
-
Great - thank you...
I'm not questioning your powers of observation; I'm merely remarking upon the paradox of asking a masked man who he is. (V)
I have realized that I didn't mentioned the 'obvious' way to move your project. In fact you do not need any support from us, git works in such way that you can move code between repositories very easily. Our user interface just allows you to do it more conveniently, clicking in browser instead of using git program. What you need is: - clone the remote repo from VS Online into your machine - add git remote (in shell the command would be 'git remote add workspaces ' - push the code (e.g. master branch) to the new remote (again, in shell: 'git push workspaces master') If you are using IDE integration with git instead, those operations (add remote and push to remote) should be available in your IDE.
-
I have realized that I didn't mentioned the 'obvious' way to move your project. In fact you do not need any support from us, git works in such way that you can move code between repositories very easily. Our user interface just allows you to do it more conveniently, clicking in browser instead of using git program. What you need is: - clone the remote repo from VS Online into your machine - add git remote (in shell the command would be 'git remote add workspaces ' - push the code (e.g. master branch) to the new remote (again, in shell: 'git push workspaces master') If you are using IDE integration with git instead, those operations (add remote and push to remote) should be available in your IDE.
Thank you - I already managed to do it exactly on the way you describe here. I'm already working on that project...
I'm not questioning your powers of observation; I'm merely remarking upon the paradox of asking a masked man who he is. (V)
-
Thank you - I already managed to do it exactly on the way you describe here. I'm already working on that project...
I'm not questioning your powers of observation; I'm merely remarking upon the paradox of asking a masked man who he is. (V)
Great!