github-to-bitbucket-issues-migration
github-to-bitbucket-issues-migration copied to clipboard
Migrate issues from a Github repository to a Bitbucket one
I run this command in bash: ```bash $ ruby cli.rb -t 'personal_gh_access_token' -u 'gh_username' -p 'gh_password' -o 'export_filename.zip' -r 'gh_username/repo' ``` where is `personal_gh_access_token` created at this URL: [https://github.com/settings/tokens](https://github.com/settings/tokens). It...
Example exported file: [export_filename.zip](https://github.com/sorich87/github-to-bitbucket-issues-migration/files/1252741/export_filename.zip). In the resolved issue called ["Application crashed"][1] the bug is obvious because the issue was created after the issue comment in it. The dates are different....
Labels can be used to identify components of the application. This patch treats labels that aren't recognized as issue type or priority as components. Unfortunately BitBucket only allows one component...
`-r` option must in in format user/repo (I guess it's an effect of some underlying library changes) ``` -r user/repo ``` one has to create a dir (side effect of...
The json export file only defines _milestone_ names that appear against open issues. It would be helpful if the milestone values for closed issues could also be included in the...
I'm running through the .jason output and I'm not seeing any of the "closed" issues. Is this possible with a special option? Awesome piece of code by the way, thank...
1) Refactored program arguments parsing (using `args_parser` gem) 2) Added option for skipping and not exporting pull requests as issues