一、拿到项目git的链接后 先 克隆主分支master的代码 git clone git的地址 再 新建自己的分支,在自己的分支上操作,如下命令:
- 新建分支 git branch 分支名
- 切换到新建分支 git checkout 分支名
- 提交到暂存区 git add .
- 提交时的备注 git commit -m “备注”
- 推送到远程 git push
推送时若出现错误: fatal: The current branch administrative has no upstream branch.To push the current branch and set the remote as upstream, use git push --set-upstream origin 分支名
原因:表示本地分支与远程分支之间没有连接起来,所以在push 的时候报错
解决:按照提示输入 git push --set-upstream origin 分支名
二、想将新分支合并到master分支,步骤如下:
- 切换到master分支上 git checkout master
- 把新分支的代码合并到master上 git merge 分支名
- 推送到远程 git push
三、有人新改了代码,你想要拉去新代码,步骤如下:
- git pull
显示remove:XXXXX Ctrl + w +q :q 若出错,将修改的代码剪切,然后VSCODE丢弃,再将修改的代码复制到之前的位置 - git push
(git add . git commit -m “备注” git push)
|