Marcus Leon
Marcus Leon

Reputation: 56659

Mercurial - determine which repository a changeset was pushed to?

If you hg push changeset A into repository myapp-v1 and then do an hg pull and hg merge to merge that into myapp-v2, is there a way in the myapp-v2 repository to identify that the changeset was originally checked into myapp-v1?

Upvotes: 0

Views: 59

Answers (1)

Lazy Badger
Lazy Badger

Reputation: 97280

No. DVCS is DVCS and commited changeset haven't any origin-data after transfer to other clones

Workaround - permanent attributes of each changeset are

  • branch
  • author name

you can use these signs

Upvotes: 4

Related Questions