Git常用命令
1. 分支
- 初始化本地仓库
git init
- 查看本地和远程所有分支
git branch -a
- 删除本地分支
git branch -D branch_name
- 删除远程分支
git push origin -d branch_name
- 创建本地分支
git branch test
- 创建本地分支并且切换
git checkout test
- 提交分支到远程
git push origin sourcecode
2.提交
- 查看代码的修改状态
git status
- 暂存需要提交的文件
git add
git add . 后面加一个“.”,匹配所有的文件
git add -u --update update tracked files 更新所有改变的文件,即提交所有变化的文件
git add -A --all add changes from all tracked and untracked files 提交已被修改和已被删除
- 提交已暂存的文件
git commit -m "first commit"
- 绑定仓库
git remote add origin https://github.com/yz0812/mdzx-wx-vue.git
- 推送
git push -u origin master
放弃修改
- $ git checkout .
7