aboutsummaryrefslogtreecommitdiffstats
path: root/identity/identity.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2019-02-24 18:49:12 +0100
committerMichael Muré <batolettre@gmail.com>2019-03-01 22:52:53 +0100
commit46beb4b886761ff69abe2ce45c2498a4fafe50d9 (patch)
tree2722505d859d93a309e6fcee40af7812c74d1220 /identity/identity.go
parent475b7b4c490bc3729772932f2d7bbcabb8f781a7 (diff)
downloadgit-bug-46beb4b886761ff69abe2ce45c2498a4fafe50d9.tar.gz
identity: another round of cleanups
Diffstat (limited to 'identity/identity.go')
-rw-r--r--identity/identity.go7
1 files changed, 1 insertions, 6 deletions
diff --git a/identity/identity.go b/identity/identity.go
index d57e8ce0..720a1ebd 100644
--- a/identity/identity.go
+++ b/identity/identity.go
@@ -24,7 +24,7 @@ const idLength = 40
const humanIdLength = 7
var ErrNonFastForwardMerge = errors.New("non fast-forward identity merge")
-var ErrNoIdentitySet = errors.New("user identity first needs to be created using \"git bug user create\"")
+var ErrNoIdentitySet = errors.New("user identity first needs to be created using \"git bug user create\" or \"git bug user adopt\"")
var ErrMultipleIdentitiesSet = errors.New("multiple user identities set")
var _ Interface = &Identity{}
@@ -391,11 +391,6 @@ func (i *Identity) Merge(repo repository.Repo, other *Identity) (bool, error) {
return false, errors.New("can't merge identities that has never been stored")
}
- /*ancestor, err := repo.FindCommonAncestor(i.lastCommit, other.lastCommit)
- if err != nil {
- return false, errors.Wrap(err, "can't find common ancestor")
- }*/
-
modified := false
for j, otherVersion := range other.versions {
// if there is more version in other, take them