git操做

新建分支
git branch xxxhtml

查看全部分支
git branch -agit

查看當前分支(前面標"*"號的表示當前使用分支)
git branch緩存

切換到某一分支
git checkout xxxcode

添加修改代碼到緩存(注意最後的"."前面有個空格
git add .htm

添加指定修改代碼文件到緩存
git add a.htmlit

將文件從緩存中刪除
git rm --cached文件

將文件從緩存中刪除且刪除本地文件
git rm --fco

查看狀態
git statuspush

添加提交代碼的備註
git commit -m"xxx"commit

提交代碼到指定分支
git push origin xxx~~~~

相關文章
相關標籤/搜索