@
johnnyb 我遇到的情况就是,把dev合并到master,然后将master推送到远程仓库,在本地切回到dev,执行了pull操作之后开始修改一些东西,commit完之后再push到远程,就报错,信息是:
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Merge the remote changes (e.g. 'git pull')
hint: before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
另外,还提示说
there is no tracking information for the current branch
你说的把dev合并到master之后,不用再把master合并回dev,也能够在dev上继续开发,你是怎样操作的?
谢谢!