赞
踩
1、在想要上传的文件中右键,Git Bash Here
2、连接本地/远程
git remote add origin/upstream git@...
查看是否已经连接上
git remote -v
另:取消连接操作
git remote remove origin/upstream
3、创建分支
创建test分支
git branch -b test
查看分支,带星号的为当前分支
git branch
另:删除分支操作
(只能删除当前没有在的分支)
git branch -d test
另:切换到test1分支操作
git checkout test1
4、开始传输数据
git add .
git commit -m "注释"
git push -u origin 分支
这时到自己的仓库查看就有了
点击按钮,跳转到pull request页面,添加标题和解释后即可提交
但是,如果这时没有按钮
则说明在你之前已经有人pr了,使用下面的语句把目标仓库更新到自己的仓库
git pull origin main --allow-unrelated-histories
这时,从第4步重新做一下,就ok了
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。