-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove non-essentials from config file
Instead, users are pointed to the website where all configuration options are listed.
- Loading branch information
Showing
3 changed files
with
16 additions
and
28 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
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 |
---|---|---|
@@ -1,26 +1,20 @@ | ||
# Rename to `config.ini`, and keep it in the same folder as `gh-issues-import.py` | ||
# All optional fields have been commented out. | ||
# For a full list of options, see <http://www.iqandreas.com/github-issues-import/configuration/> | ||
|
||
[source] | ||
server = github.com | ||
repository = octocat/Hello-World | ||
username = user@example.com | ||
password = naked_password | ||
repository = OctoCat/Hello-World | ||
username = octocat@github.com | ||
password = plaintext_pa$$w0rd | ||
|
||
[target] | ||
server = helloworld.org | ||
repository = helloworld-inc/Hello-World | ||
username = other_user@helloworld.org | ||
password = naked_password | ||
server = octodog.org | ||
repository = OctoDog/Hello-World | ||
username = admin@octodog.org | ||
password = plaintext_pass\/\/ord | ||
|
||
[format] # These can be adjusted based on your group's region and language. | ||
|
||
# Unless an absolute path is given, the templates are relative to the current working directory. | ||
# Example (and default) templates can be found in the `templates` folder. | ||
#issue_template = templates/issue.md | ||
#pull_request_template = templates/pull_request.md | ||
#comment_template = templates/comment.md | ||
|
||
# If unsure, just using '%c' will default to the locale’s appropriate date and time representation. | ||
#date = %A %b %d, %Y at %H:%M GMT # Sample: Friday Sep 13, 2013 at 22:58 GMT | ||
|
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 |
---|---|---|
@@ -1,24 +1,18 @@ | ||
# Rename to `config.ini`, and keep it in the same folder as `gh-issues-import.py` | ||
# All optional fields have been commented out. | ||
# For a full list of options, see <http://www.iqandreas.com/github-issues-import/configuration/> | ||
|
||
[login] | ||
username = [email protected] | ||
password = naked_password | ||
username = OctoDog | ||
password = plaintext_pa$$w0rd | ||
|
||
[source] | ||
repository = octocat/Hello-World | ||
repository = OctoCat/Hello-World | ||
|
||
[target] | ||
repository = helloworld-inc/Hello-World | ||
repository = OctoDog/Hello-World | ||
|
||
[format] # These can be adjusted based on your group's region and language. | ||
|
||
# Unless an absolute path is given, the templates are relative to the current working directory. | ||
# Example (and default) templates can be found in the `templates` folder. | ||
#issue_template = templates/issue.md | ||
#pull_request_template = templates/pull_request.md | ||
#comment_template = templates/comment.md | ||
|
||
# If unsure, just using '%c' will default to the locale’s appropriate date and time representation. | ||
#date = %A %b %d, %Y at %H:%M GMT # Sample: Friday Sep 13, 2013 at 22:58 GMT | ||
|