HowToUseGit QuickSetup

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

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容