git操作

新建分支
git branch xxx

查看所有分支
git branch -a

查看当前分支(前面标"*"号的表示当前使用分支)
git branch

切换到某一分支
git checkout xxx

添加修改代码到缓存(注意最后的"."前面有个空格
git add .

添加指定修改代码文件到缓存
git add a.html

将文件从缓存中删除
git rm --cached

将文件从缓存中删除且删除本地文件
git rm --f

查看状态
git status

添加提交代码的备注
git commit -m"xxx"

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

你可能感兴趣的:(前端)