g2g is a small program that migrate stars made on github projects to self owned gogs/gitea instance
Go to file
2020-01-29 12:54:43 +01:00
.vscode various changes 2019-10-12 10:08:05 +02:00
cmd/g2g updated g2g 2020-01-29 12:54:43 +01:00
src updated g2g 2020-01-29 12:54:43 +01:00
vendor updated vendors 2019-10-06 19:19:48 +02:00
.gitignore updated g2g 2020-01-29 12:54:43 +01:00
g2g.ini.sample updated g2g 2020-01-29 12:54:43 +01:00
go.mod updated g2g 2020-01-29 12:54:43 +01:00
go.sum updated go mods 2019-10-06 19:20:05 +02:00
Makefile updated g2g 2020-01-29 12:54:43 +01:00
README.md updated g2g 2020-01-29 12:54:43 +01:00
VERSION added vendors in project 2019-06-08 09:05:45 +02:00

g2g

Summary

g2g is a small program that migrate stars made on github projects to self owned gogs/gitea instance

Howto

Build

go build

Sample config in g2g.ini

[g2g]
request_timeout=1200s
threads=4

github_stars_pages="https://api.github.com/users/%s/starred?page=%d"
github_max_per_page=500
github_page_num=3
github_auth_username="user"
github_auth_password="pass"

gitea_username="user"
gitea_dest_username="user_or_org"
gitea_repo_url_tmpl="https://gogs.example.com/api/v1/repos/%s/%s"
gitea_orgs_url_tmpl="https://git.paulbsd.com/api/v1/orgs/%s"
gitea_migrate_url="https://gogs.example.com/api/v1/repos/migrate"
gitea_auth_token="token xxxx"
gitea_mirror=true

Run

./g2g -configfile g2g.ini

Todo

  • Add tests

License

Copyright (c) 2020 PaulBSD
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

1. Redistributions of source code must retain the above copyright notice, this
   list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
   this list of conditions and the following disclaimer in the documentation
   and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

The views and conclusions contained in the software and documentation are those
of the authors and should not be interpreted as representing official policies,
either expressed or implied, of the fuelprices project.