HowToUseGit QuickSetup

2017-05-27  本文已影响0人  HHMC

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

上一篇 下一篇

猜你喜欢

热点阅读