This repository has been archived by the owner on Apr 6, 2019. It is now read-only.
forked from nirvdrum/svn2git
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request nirvdrum#57 from ruderphilipp/patch-1
minor markup changes in README.markdown
- Loading branch information
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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. | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
||
|