Skip to content
This repository has been archived by the owner on Apr 6, 2019. It is now read-only.

Commit

Permalink
Merge pull request nirvdrum#57 from ruderphilipp/patch-1
Browse files Browse the repository at this point in the history
minor markup changes in README.markdown
  • Loading branch information
nirvdrum committed Oct 7, 2012
2 parents f45c08e + 4b9fee4 commit 4ddadf5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -156,11 +156,11 @@ system with the list of conversions to make, one per line, for example:
jcoglan = James Coglan <[email protected]>
stnick = Santa Claus <[email protected]>

Then pass an +authors+ option to +svn2git+ pointing to your file:
Then pass an _authors_ option to svn2git pointing to your file:

$ svn2git http://svn.example.com/path/to/repo --authors ~/authors.txt

Alternatively, you can place the authors file into ~/.svn2git/authors and
Alternatively, you can place the authors file into `~/.svn2git/authors` and
svn2git will load it out of there. This allows you to build up one authors
file for all your projects and have it loaded for each repository that you
migrate.
Expand All @@ -171,7 +171,7 @@ the logs from the svn repository, pulls out all the names from the commits,
sorts them, and then reduces the list to only unique names. So, in the end
it outputs a list of usernames of the people that made commits to the svn
repository which name on its own line. This would allow you to easily
redirect the output of this command sequence to ~/.svn2git/authors and have
redirect the output of this command sequence to `~/.svn2git/authors` and have
a very good starting point for your mapping.

$ svn -q log http://path/to/root/of/project | grep -E "r[0-9]+ \| .+ \|" | awk '{print $3}' | sort | uniq
Expand All @@ -183,7 +183,7 @@ If you're having problems with converting your repository and you're not sure wh
try turning on verbose logging. This will print out more information from the
underlying git-svn process.

You can turn on verbose logging with the '-v' or '--verbose' flags, like so:
You can turn on verbose logging with the `-v` or `--verbose` flags, like so:

$ svn2git http://svn.yoursite.com/path/to/repo --verbose

Expand Down

0 comments on commit 4ddadf5

Please sign in to comment.