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

你可能感兴趣的:(HowToUseGit QuickSetup)