git的初始配置
git config --global user.name LinZhihui
git config --global user.email 519403248@qq.com
git config --global push.default simple
git config --global core.quotepath false
git config --global core.editor "vim"
命令行&git的常规操作
增:mkdir touch echo
删:rm -rf
改:cp old-path new-path
mv old-path new-path
git的本地操作
git init 本地仓库初始化
git add target 将target放入暂存区
git commit -m "推送" 将暂存区提交至.git仓库
git status -sb 查看当前暂存区状态(红?红M 绿M)
git log 查看历史
Git-Hub创建仓库
空仓库
echo "# frontend" >> README.mdr
git initr
git add README.mdr
git commit -m "first commit"r
git remote add origin git@github.com:LinZhihui2016/frontend.gitr
git push -u origin master
本地仓库同步至Git-Hub
git remote add origin git@github.com:LinZhihui2016/frontend.git
git push -u origin master
Git-Hub同步至本地仓库
git clone git@github.com:LinZhihui2016/frontend.git