git remote add origin {remote repository} git push -u origin --all
- {remote repository}
- ssh -
git@ssh.dev.azure.com:v3/{{repo}} - https -
https://StryxInc@dev.azure.com
- gist remote (or bin repository)
git init git remote add origin {remote repository URL} git remote -v # Verifies the new remote URL git branch --set-upstream remotes/origin/master master git pull origin 브런치명 --allow-unrelated-histories # edit git add interest git commit -a blabla # careful m option git push
start with remote
Adding an existing project to GitHub using the command line
Putting your existing work on GitHub can let you share and collaborate in lots of great ways. If you are migrating your project from CodePlex, read the migration guide for more information. Warning: Never git add, commit, or push sensitive information to a remote repository.
https://help.github.com/en/github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line


Seonglae Cho