aboutsummaryrefslogtreecommitdiffstats
path: root/entities
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2022-09-10 11:09:19 +0200
committerMichael Muré <batolettre@gmail.com>2022-11-20 17:18:09 +0100
commitacc9a6f3a6df2961c3ae44352216d915cb9b5315 (patch)
treee159372673104ade1f15ddc1a84aa9da93e93552 /entities
parenta3fa445a9c76631c4cd16f93e1c1c68a954adef7 (diff)
downloadgit-bug-acc9a6f3a6df2961c3ae44352216d915cb9b5315.tar.gz
commands: reorg into different packages
Diffstat (limited to 'entities')
-rw-r--r--entities/identity/identity.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/entities/identity/identity.go b/entities/identity/identity.go
index fd9da062..d497dbcc 100644
--- a/entities/identity/identity.go
+++ b/entities/identity/identity.go
@@ -22,7 +22,7 @@ const identityConfigKey = "git-bug.identity"
var ErrNonFastForwardMerge = errors.New("non fast-forward identity merge")
var ErrNoIdentitySet = errors.New("No identity is set.\n" +
"To interact with bugs, an identity first needs to be created using " +
- "\"git bug user create\" or adopted with \"git bug user adopt\"")
+ "\"git bug user new\" or adopted with \"git bug user adopt\"")
var ErrMultipleIdentitiesSet = errors.New("multiple user identities set")
func NewErrMultipleMatchIdentity(matching []entity.Id) *entity.ErrMultipleMatch {