Skip to content

Commit

Permalink
Merge pull request #5 from trieloff/patch-1
Browse files Browse the repository at this point in the history
Markdown formatting
  • Loading branch information
ahadik committed Dec 5, 2017
2 parents 646eeed + 9191868 commit 8cc7e06
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
#GitMover
# GitMover
A Python script to migrate milestones, labels, and issues between repositories.

There was once no easy way to migrate your team's collaborative work (Milestones, Labels, Issues) to another repository. This was especially thorny for teams moving a project into GitHub Enterprise, or open sourcing an existing project by moving it out of GitHub Enterprise. This is a tool to help that process.

##Dependencies
## Dependencies
GitMover is just a Python script. You'll need `requests`, and `argparse` installed.
Install them with pip: `pip install requests argparse`.

##Usage
```
git-mover.py [-h] [--destinationToken [DESTINATIONTOKEN]]
## Usage
```bash
$ git-mover.py [-h] [--destinationToken [DESTINATIONTOKEN]]
[--destinationUserName [DESTINATIONUSERNAME]]
[--sourceRoot [SOURCEROOT]]
[--destinationRoot [DESTINATIONROOT]] [--milestones]
Expand All @@ -19,7 +19,7 @@ git-mover.py [-h] [--destinationToken [DESTINATIONTOKEN]]
For authentication, GitMover uses a personal access token, which can be generated in your GitHub Profile settings.
###Positional Arguments
### Positional Arguments
`user_name`: Your GitHub (public or enterprise) username: name@email.com
`token`: Your GitHub (public or enterprise) personal access token
Expand All @@ -28,7 +28,7 @@ For authentication, GitMover uses a personal access token, which can be generate
`destination_repo`: the team and repo to migrate to: `<team_name>/<repo_name>`
###Optional Arguments
### Optional Arguments
`-h, --help`: show this help message and exit
`--sourceRoot [SOURCEROOT], -sr [SOURCEROOT]`: The GitHub domain to migrate from. Defaults to https://www.github.com. For GitHub enterprise customers, enter the domain for your GitHub installation.
Expand Down

0 comments on commit 8cc7e06

Please sign in to comment.