git 基本命令
ilife5 opened this issue · 1 comments
ilife5 commented
新建项目
clone项目
提交代码
取消提交代码
切换分支
merge分支
ilife5 commented
新建项目
git init
git add
git commit
git remote add origin <address>
git push -u origin master
clone项目
git clone
提交代码
git commit -m "msg"
取消提交代码
git reset
切换分支
git checkout branchName
merge分支
git checkout branchName
git merge branchName