本地Git存储库具有多个分支,而Github(远程)存储库仅具有主分支

时间:2019-04-28 14:03:20

标签: git github

我正在尝试将更改提交到名为 orders-page 的分支。 该分支位于本地git存储库中。提交这些更改后,我将其推送到Github服务器。我在那里看不到它们-我只能看到主人。

这就是我将它们推送到github的方式:

git add .
git commit -m "description"
git push origin orders-page

这是我输入时得到的:

git branch
#  choose-vehicle
#  f7-react-starter
#  geolocation
#  master
#  * orders-page
#  socket.io

这是github分支列表:

enter image description here

我尝试过git remote -v并得到了回报:

# origin    https://github.com/myuser/my-repo.git (fetch) // correct url
# origin    https://github.com/myuser/my-repo.git (push) // correct url

我尝试过git branch --remote并获得了(红色):

origin/auth
  origin/choose-vehicle
  origin/f7-react-starter
  origin/geolocation
  origin/master
  origin/orders-page
  origin/socket.io
  origin/work-schedule

如何将这些分支合并到Github存储库?

0 个答案:

没有答案