某种程度上离开了我的git本地分支

时间:2013-09-11 09:28:55

标签: java eclipse git github

我使用的是git和sourceTree软件。

我已经做出了一些改变

我想做的就是在本地cancun_elad中进行所有更改并推送到远程cancun_elad。

但是当我尝试推送它时,我收到一个错误:

enter image description here

sourceTree:

enter image description here

1 个答案:

答案 0 :(得分:0)

首先创建一个新分支

git checkout -b mybranch

然后切换到现有分支之一

git checkout cancun_elad

然后合并旧分支的更改

git merge mybranch

然后将更改推送到远程

git push origin cancun_elad