зеркало из https://github.com/mislav/hub.git
67 строки
1.3 KiB
Go
67 строки
1.3 KiB
Go
package commands
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/github/hub/v2/github"
|
|
"github.com/github/hub/v2/utils"
|
|
)
|
|
|
|
var cmdPush = &Command{
|
|
Run: push,
|
|
GitExtension: true,
|
|
Usage: "push <REMOTE>[,<REMOTE2>...] [<REF>]",
|
|
Long: `Push a git branch to each of the listed remotes.
|
|
|
|
## Examples:
|
|
$ hub push origin,staging,qa bert_timeout
|
|
> git push origin bert_timeout
|
|
> git push staging bert_timeout
|
|
> git push qa bert_timeout
|
|
|
|
$ hub push origin
|
|
> git push origin HEAD
|
|
|
|
## See also:
|
|
|
|
hub(1), git-push(1)
|
|
`,
|
|
}
|
|
|
|
func init() {
|
|
CmdRunner.Use(cmdPush)
|
|
}
|
|
|
|
func push(command *Command, args *Args) {
|
|
if !args.IsParamsEmpty() && strings.Contains(args.FirstParam(), ",") {
|
|
transformPushArgs(args)
|
|
}
|
|
}
|
|
|
|
func transformPushArgs(args *Args) {
|
|
refs := []string{}
|
|
if args.ParamsSize() > 1 {
|
|
refs = args.Params[1:]
|
|
}
|
|
|
|
remotes := strings.Split(args.FirstParam(), ",")
|
|
args.ReplaceParam(0, remotes[0])
|
|
|
|
if len(refs) == 0 {
|
|
localRepo, err := github.LocalRepo()
|
|
utils.Check(err)
|
|
|
|
head, err := localRepo.CurrentBranch()
|
|
utils.Check(err)
|
|
|
|
refs = []string{head.ShortName()}
|
|
args.AppendParams(refs...)
|
|
}
|
|
|
|
for _, remote := range remotes[1:] {
|
|
afterCmd := []string{"git", "push", remote}
|
|
afterCmd = append(afterCmd, refs...)
|
|
args.After(afterCmd...)
|
|
}
|
|
}
|