我在bitbucket中使用git存储库。在我的本地存储库中,我创建了一个新分支修复。我需要将提交推送到远程bitbucket repo。
我按下了命令
git push github master
我收到的消息一切都是最新的。但是我无法在远程仓库中看到这些提交。
使用以下命令
git remote show github
我明白了,
remote github
Fetch URL: https://me@bitbucket.org/me/sample.git
Push URL:https://me@bitbucket.org/me/sample.git
HEAD branch: master
Remote branch:
master tracked
Local ref configured for 'git push':
master pushes to master (up to date)
为什么会这样?我是否需要在远程存储库中创建新的分支以与我的本地repo分支连接?
答案 0 :(得分:0)
运行此命令时,您只在名为push
的分支上使用master
:
git push github master
为什么你将bitbucket'remote'命名为github
有什么特别的原因吗?这在读它时真的很混乱。
运行:
git push github fixes
假设您仍然将bitbucket
遥控器命名为github
。