Skip to content

Tags: aef-digisaar/svn2git

Tags

1.0.18

Toggle 1.0.18's commit message
Add test that copying a directory with empty sub-dirs should put empt… …y .gitignore files to empty directories with empty-dirs parameter

1.0.17

Toggle 1.0.17's commit message
empty-dirs option now manages existing folder becaming empty and merg… …ing with empty fodlers

1.0.16

Toggle 1.0.16's commit message
Revert "Revert Maintain annotated tags throughout incremental runs sv… …n-all-fast-export#60" This reverts commit 58378dc.

1.0.15

Toggle 1.0.15's commit message
Revert Maintain annotated tags throughout incremental runs svn-all-fa… …st-export#60 Revert MR # 60 Maintain annotated tags throughout incremental runs Due to compile error

1.0.14

Toggle 1.0.14's commit message
Don't warn about branches created at revision 1 

1.0.13

Toggle 1.0.13's commit message
Create annotated tags even when dealing with sub-paths 

1.0.12

Toggle 1.0.12's commit message
*.pro: remove "Automatically generated by qmake…" header 

1.0.11

Toggle 1.0.11's commit message
Allow compiling against SVN 1.8. (svn-all-fast-export#22) 

1.0.10

Toggle 1.0.10's commit message
Stop unintended re-encoding of author names from UTF-8 to ASCII To see the bug in action, use an author map with umlauts, e.g. nickname = Hällo Wörld from UTF-8 <mail@example.org> and check "git log" after the conversion. What is happening? QByteArray "author" is first decoded as UTF-8 into a QString. That QString is passed to QByteArray::append(const QString &) which internally encodes the QString to ASCII byte data using QString::toAscii(). "git fast-import" expects UTF-8 input from us, so the original QByteArray with UTF-8 content is just what we need.

1.0.9

Toggle 1.0.9's commit message
Stop unintended re-encoding of author names from UTF-8 to ASCII To see the bug in action, use an author map with umlauts, e.g. nickname = Hällo Wörld from UTF-8 <mail@example.org> and check "git log" after the conversion. What is happening? QByteArray "author" is first decoded as UTF-8 into a QString. That QString is passed to QByteArray::append(const QString &) which internally encodes the QString to ASCII byte data using QString::toAscii(). "git fast-import" expects UTF-8 input from us, so the original QByteArray with UTF-8 content is just what we need.