GIT操作

第一次初始化

git init
git add .
git status
git commit -m 'first add'
git remote add origin https://github.com/shichangqi/scqvue.git
git pull --rebase origin master
git push -u origin master

你可能感兴趣的:(git)