我正在尝试将更改提交到名为 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分支列表:
我尝试过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存储库?