新手问题。我正在使用 Bitbucket 来存储我的 git 存储库。我之前创建了一个新的 master 本地分支,称为 branch1。然后我会将对 branch1 的更改提交给 bitbucket。另一位开发人员一直在使用 master 进行更改,我现在需要将它们与 branch1 合并。
当我做 git ls-remote 我看到: HEAD refs/heads/master refs/heads/branch1
我现在如何确保我在本地获得了 master 并已合并到我的 branch1 中?我是否需要在本地签出 master,然后将其与 branch1 合并?
感谢您的时间和帮助。