美文网首页
HowToUseGit QuickSetup

HowToUseGit QuickSetup

作者: HHMC | 来源:发表于2017-05-27 09:57 被阅读0次

create a new repo

  1. initialization a repo
mkdir NEWDIR
cd NEWDIR
git init
  1. make a connection with local repo and remote repo
git remote add origin https://github.com/doctorhui/Blog.git
  1. make your change to local repo
echo "blablabla" >> README.md
git add README.md
git commit -m "first commit"

  1. synchonize local repo and remote repo
git push -u origin master
  1. make change in your local repo
git add
git commit -m "foofoo"

  1. synchronize local repo and remote repo
git push 

push an exiting repo

all you need to do is the third step


reference

liaoxuefeng

ruanyifeng

相关文章

网友评论

      本文标题:HowToUseGit QuickSetup

      本文链接:https://www.haomeiwen.com/subject/jinffxtx.html