Skip to content

Commit

Permalink
Added MIT license to README & finishGoogleCodeGitHubWikiMigration, pl…
Browse files Browse the repository at this point in the history
…us updated changelog in the latter.
  • Loading branch information
morgant committed Mar 28, 2015
1 parent 0eb4a7b commit 1bae80c
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 1 deletion.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,14 @@ USAGE
**NOTE**: This tool modifies the repositories, if you don't like the changes it makes, **DO NOT** push the changes back to GitHub!

You can also [set the "project moved" flag on the Google Code project](https://code.google.com/p/support-tools/wiki/GitHubExporterFAQ#Setting_the_"Project_Moved"_Flag) if you want it to permanently redirect to the GitHub project, but I've found you cannot revert the change.

LICENSE
-------

Copyright (c) 2015 Morgan T. Aldridge

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 changes: 25 additions & 1 deletion finishGoogleCodeGitHubWikiMigration
Original file line number Diff line number Diff line change
@@ -1,11 +1,35 @@
#!/bin/bash

#
# finishGoogleCodeGitHubWikiMigration
#
# For projects that have been migrated from Google Code to GitHub, move wiki data from the
# 'wiki' branch to the project's README.md & its GitHub wiki.
#
# v0.1 2015-03-15 - Morgan Aldridge <[email protected]>
# Initial version.
# v0.2 2015-03-28 - Morgan Aldridge
# HTTPS support, with thanks to Piper Chester.
#
# Copyright (c) 2015 Morgan T. Aldridge
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
#

# validate input
Expand Down Expand Up @@ -85,4 +109,4 @@ echo "Done."
echo
echo "The '$repo' & '${repo}.wiki' clones have been updated & commits applied."
echo "Please review both (I suggest at least a 'git log' & 'git diff HEAD^1') "
echo "and perform a 'git push' on each, if the results are satisfactory."
echo "and only perform a 'git push' on each, if the results are satisfactory."

2 comments on commit 1bae80c

@fossilet
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you Morgant for such a useful tool.

@morgant
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm glad you found it useful. :)

Please sign in to comment.