gpt4 book ai didi

git - 用git推送到另一个分支

转载 作者:行者123 更新时间:2023-12-03 09:47:46 25 4
gpt4 key购买 nike

我通过ssh完成了projet的克隆

git clone ssh ssh://git@10.7.5.11:IMER/ropolo.git
master分支受到保护,所以我不能推送更改。

还有另一个分支 dev_ropolo

我是否需要将此分支带到本地。
为了将我的更改推送到该分支,需要做什么?

编辑:
$ git fetch
* [new branch] ropolo -> origin/ropolo

$ git branch
* master

最佳答案

在本地仓库中使用fetch命令

$ git fetch

检查您的分支机构是否已使用
$ git branch

现在使用结帐更改您的分支
$ git checkout -b branch_name

然后做一些改变
$ git add .
$ git commit -m "message"
$ git push origin remote_branch_name

关于git - 用git推送到另一个分支,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45080223/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com