Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 git 和 sourceTree 软件。
我已经提交了一些更改
我想做的就是在本地cancun_elad 中进行所有更改并推送到远程cancun_elad。
但是当我尝试推动它时,我得到一个错误:
源树:
首先新建一个分支
git checkout -b mybranch
然后切换到现有分支之一
git checkout cancun_elad
然后合并旧分支的更改
git merge mybranch
然后将您的更改推送到遥控器
git push origin cancun_elad