From 2b53172ebe681fc75f617780dc34a00e3799fa4a Mon Sep 17 00:00:00 2001 From: Corey Johnson Date: Mon, 16 Dec 2019 10:54:22 -0800 Subject: [PATCH] Add line for pr create --- command/pr_create.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/command/pr_create.go b/command/pr_create.go index abff4e5be..dbc6f19de 100644 --- a/command/pr_create.go +++ b/command/pr_create.go @@ -45,6 +45,8 @@ func prCreate(cmd *cobra.Command, _ []string) error { return err } + fmt.Fprintf(colorableOut(cmd), "Creating pull request for %s in %s/%s\n", utils.Cyan("["+head+"]"), repo.RepoOwner(), repo.RepoName()) + if err = git.Push(remote, fmt.Sprintf("HEAD:%s", head)); err != nil { return err }