mirror of
https://github.com/git/git
synced 2024-11-05 18:59:29 +00:00
Set git fast-import marks for every imported change for future use.
Signed-off-by: Simon Hausmann <simon@lst.de>
This commit is contained in:
parent
53b03239aa
commit
77083daac7
1 changed files with 1 additions and 0 deletions
|
@ -154,6 +154,7 @@ def commit(details, files, branch, branchPrefix):
|
|||
author = details["user"]
|
||||
|
||||
gitStream.write("commit %s\n" % branch)
|
||||
gitStream.write("mark :%s\n" % details["change"])
|
||||
committer = ""
|
||||
if author in users:
|
||||
committer = "%s %s %s" % (users[author], epoch, tz)
|
||||
|
|
Loading…
Reference in a new issue