在我的仓库中,我有一个master
分支和一个new
分支。
我已经工作new
了一段时间,进行提交,并在我进行时推送。我现在决定分支new
并调用它newest
。所以我做了
git checkout -b "newest"
并且分支已成功创建。我添加了一个文件,并开始处理它。我提交了几次更改。
但是当我尝试将这个新分支和我对它的更改推送到时origin
,我收到了这个错误:
C:\wamp\www\myproj>git push origin
To https://github.com/Imray/Proj.git
! [rejected] master -> master (non-fast-forward)
! [rejected] new -> new (non-fast-forward)
error: failed to push some refs to 'https://github.com/Imray/Proj.git'
hint: Updates were rejected because a pushed branch tip is behind its remote
hint: counterpart. Check out this branch and integrate the remote changes
hint: (e.g. 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
因此,按照说明中的说明,我尝试git pull
了,但后来我得到了:
There is no tracking information for the current branch.
Please specify which branch you want to merge with.
See git-pull(1) for details
git pull <remote> <branch>
If you wish to set tracking information for this branch you can do so with:
git branch --set-upstream-to=origin/<branch> newest
我被困住了。
如何将我的新分支和更改推送到github
?