Git
Git 提交规范
commit: {
feat: 'feat:新功能',
fix: 'fix:修复',
docs: 'docs:文档变更',
style: 'style:代码格式(不影响代码运行的变动)',
refactor: 'refactor:重构(既不是增加feature,也不是修复bug)',
perf: 'perf:性能优化',
test: 'test:增加测试',
chore: 'chore:构建过程或辅助工具的变动,依赖更新/脚手架配置修改等',
revert: 'revert:回退',
build: 'build:打包',
workflow: 'workflow :工作流改进',
}
git 使用教程
克隆仓库
git clone https://***.git
查看文件状态
git status
暂存文件
git add .
提交暂存的文件,添加描述
git commit -m ""
推送代码到远程仓库
git push
拉取远程仓库的代码
git pull
当前工作区保存到栈
git stash
将git stash保存的更改恢复到工作区
git stash pop
新建并切换到该分支
git checkout -b develop
新建分支
git branch develop
切换分支
git checkout develop
分支合并:切换到主分支,合并
develop
切换到主分支
git checkout master
合并
git merge develop
查看分支
git branch
切换分支
git checkout develop
推送代码到远程仓库
git push origin develop
同步远程仓库
git fetch origin
查看远程分支
git branch -r
拉取远程分支
git branch pc origin/pc
获取远程仓库状态,并删除本地没有对应远程分支的远程跟踪分支
git fetch -p
删除本地分支
git branch -d <branch_name>