当前位置:   article > 正文

Git push 从本地指定分支到远程指定分支_git push到远程分支

git push到远程分支

使用场景:

有时需要将指定的本地分支强制push到远程分支,可以在以下命令基础上加-f,强制执行。

git push origin +dev:master

Meaning: Git push to remote origin/master from local dev

以上命令的含义是push 到远程origin的master分支(从本地的dev分支)。

参考官方文档:

<https://git-scm.com/docs/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] [-o <string> | --push-option=<string>]
           [--[no-]signed|--signed=(true|false|if-asked)]
           [--force-with-lease[=<refname>[:<expect>]] [--force-if-includes]]
           [--no-verify] [<repository> [<refspec>…​]]

<repository>

The "remote" repository that is destination of a push operation. This parameter can be either a URL (see the section GIT URLS below) or the name of a remote (see the section REMOTES below).

<refspec>…​

Specify what destination ref to update with what source object. The format of a <refspec> parameter is an optional plus +, followed by the source object <src>, followed by a colon :, followed by the destination ref <dst>.

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/692474
推荐阅读
相关标签
  

闽ICP备14008679号