git remote

git remote

Creator
Creator
Seonglae ChoSeonglae Cho
Created
Created
2020 Jan 19 7:11
Editor
Edited
Edited
2022 Aug 3 15:22
Refs
git remote add origin {remote repository} git push -u origin --all
 
 
  • 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.
 
 

Backlinks

Git

Recommendations