git 创建分支并切换到该分支:
git switch -c feature/1 //feature/1是自定义的分支名
git 切换到已有分支继续开发:
git checkout feature/1
将分支提交到远程仓库:
- 首先将git提交到本地:如下图所示(软件为vscode) 点击+号将更改下的文件变成暂存更改,然后在搜索框里输入描述(比如增加表单),再按勾号提交本地,这个可以代替git add和git commit
2. 然后将分支提交到远程仓库:git push origin feature/1
将代码从远程仓库拉到本地:
- git checkout master //首先要切换到master分支
- git pull origin master //拉取到本地
feature与master合并:
- 首先切换到master分支,即git checkout master
- 然后拉取最新的master,git pull origin master
- 转到相应的feature分支,git checkout feature/1
- 与master合并:git merge master
- 最后提交到远程 git push origin feature/1
其他常用git命令:
git branch //查看当前分支, git log //显示从最近到最远的提交日志
如有错误,恳请指正