无法将分支推送到github

时间:2012-12-05 14:08:27

标签: git github branch push git-remote

我分叉了一个github仓库并将叉子克隆到我的机器上。然后我从master创建了一个名为#25的新分支(我要修复的问题ID)。我修复了这个bug,然后由分支机构提交。现在我正在尝试将此分支推送到github,因此我可以发送拉取请求,但它不起作用。即使我按照说明操作,分支也不会显示在github上。

$ git push origin #25
Everything up-to-date

我在正确的分支上:

$ git branch
* #25
  master

提交也很成功:

$ git log
commit 083f15035feab5af1673ed3685e10cca6e24aeeb
Author: John Example <johnexample@gmail.com>
Date:   Wed Dec 5 14:53:16 2012 +0100

    Fixed #25: Window now correctly resizes to fullscreen.

我做错了什么?

2 个答案:

答案 0 :(得分:6)

# - 是用于为任何注释添加前缀的符号,例如

$ ls
$ ls #holymotherofgod

完全相同

你必须逃避它

$ git push origin \#25

答案 1 :(得分:0)

也许试试

git flow feature finish #25