我无法推动我的git分支,一切都是最新的,但什么都没有推?

时间:2017-11-02 06:09:15

标签: git github

我很困惑,为什么我不能推动我的分支,所以我试图推动但它说:

  

设置分支功能/样式以跟踪远程分支功能/样式   起源。一切都是最新的

当我使用git branch时,我在我想要的功能/样式分支上。我也使用git pull它说已经是最新的。但是当我承诺并推动时,没有任何东西被推动?帮助

2 个答案:

答案 0 :(得分:0)

使用它:

git pull origin feature/style
git push origin feature/style

答案 1 :(得分:0)

git-pull - 从另一个存储库或本地分支中获取并集成

git pull [options] [<repository> [<refspec>…​]]

git-push - 更新远程引用以及相关对象

git push [--all | --mirror | --tags] [--follow-tags] [--atomic] [-n | --dry-run] [--receive-pack=<git-receive-pack>]
       [--repo=<repository>] [-f | --force] [-d | --delete] [--prune] [-v | --verbose]
       [-u | --set-upstream] [--push-option=<string>]
       [--[no-]signed|--signed=(true|false|if-asked)]
       [--force-with-lease[=<refname>[:<expect>]]]
       [--no-verify] [<repository> [<refspec>…​]]

参考

https://git-scm.com/docs/git-pull

https://git-scm.com/docs/git-push

对于你的情况

git pull origin feature/style
git push origin feature/style