当前位置:   article > 正文

Git进行pull request_git request-pull

git request-pull

1、在想要上传的文件中右键,Git Bash Here

2、连接本地/远程

git remote add origin/upstream git@...
  • 1

查看是否已经连接上

git remote -v
  • 1

另:取消连接操作

git remote remove origin/upstream 
  • 1

3、创建分支

创建test分支

git branch -b test
  • 1

查看分支,带星号的为当前分支

git branch 
  • 1

另:删除分支操作
(只能删除当前没有在的分支)

git branch -d test
  • 1

另:切换到test1分支操作

git checkout test1
  • 1

4、开始传输数据

git add .
git commit -m "注释"
git push -u origin 分支 
  • 1
  • 2
  • 3

这时到自己的仓库查看就有了
在这里插入图片描述
点击按钮,跳转到pull request页面,添加标题和解释后即可提交

但是,如果这时没有按钮
则说明在你之前已经有人pr了,使用下面的语句把目标仓库更新到自己的仓库

git pull origin main --allow-unrelated-histories
  • 1

这时,从第4步重新做一下,就ok了

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号