Op 12-10-2011 19:45, Lars Gullik Bjønnes schreef:
gitglossary - grafts: Grafts enables two otherwise different lines of
development to be joined together by recording fake ancestry
information for commits. This way you can make git pretend the set of
parents a commit has is different from what was recorded when the
commit was created. Configured via the .git/info/grafts file. I use
this to make the tag be on the correct branch, and not on a "svn tag
branch".
Thanks, just learned a new Git thing.
Afterward, using "git fast-export/fast-import" or "git filter-branch"
can rewrite the history but keeping the same sha1 ? And git svn still
works after ?
Vincent