From 0180b68cb0bb3aecf9b4a6186094a084762b4a25 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Tue, 17 Jul 2018 01:52:56 +0200 Subject: implement pull/merge --- commands/new.go | 3 +++ 1 file changed, 3 insertions(+) (limited to 'commands/new.go') diff --git a/commands/new.go b/commands/new.go index a2373515..4f6008cf 100644 --- a/commands/new.go +++ b/commands/new.go @@ -3,6 +3,7 @@ package commands import ( "errors" "flag" + "fmt" "github.com/MichaelMure/git-bug/bug" "github.com/MichaelMure/git-bug/bug/operations" "github.com/MichaelMure/git-bug/commands/input" @@ -60,6 +61,8 @@ func runNewBug(repo repository.Repo, args []string) error { err = newbug.Commit(repo) + fmt.Println(newbug.HumanId()) + return err } -- cgit