{"id":22978356,"url":"https://github.com/thunderbottom/gitsync","last_synced_at":"2026-05-03T16:31:35.567Z","repository":{"id":91675904,"uuid":"84674961","full_name":"Thunderbottom/GitSync","owner":"Thunderbottom","description":"Python script to sync all your GitHub repositories.","archived":false,"fork":false,"pushed_at":"2017-03-13T19:25:08.000Z","size":15,"stargazers_count":2,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-02T08:48:21.379Z","etag":null,"topics":["git","github","python","python3-script","script","sync"],"latest_commit_sha":null,"homepage":"https://thunderbottom.github.io/GitSync","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Thunderbottom.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-03-11T19:34:21.000Z","updated_at":"2020-07-02T13:07:03.000Z","dependencies_parsed_at":null,"dependency_job_id":"70c802cf-47ea-4e1c-b1ef-15620c3bb580","html_url":"https://github.com/Thunderbottom/GitSync","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/Thunderbottom/GitSync","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Thunderbottom%2FGitSync","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Thunderbottom%2FGitSync/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Thunderbottom%2FGitSync/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Thunderbottom%2FGitSync/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Thunderbottom","download_url":"https://codeload.github.com/Thunderbottom/GitSync/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Thunderbottom%2FGitSync/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32577119,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-03T06:36:36.687Z","status":"ssl_error","status_checked_at":"2026-05-03T06:36:09.306Z","response_time":103,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["git","github","python","python3-script","script","sync"],"created_at":"2024-12-15T01:18:35.429Z","updated_at":"2026-05-03T16:31:35.550Z","avatar_url":"https://github.com/Thunderbottom.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GitSync\n\nPython script to sync GitHub repositories with your machine.\nThe script is currently in its initial stages, and the code isn't really clean, so the functioning *might* vary depending on the machine it is running on.\n\n\n\n## Usage\n\n```\nusage: syncrepo.py [-h] [--no-skip-forks] [--directory DIRECTORY]\n                   [---lang-dir] [--commit-all]\n\noptional arguments:\n  -h, --help              show this help message and exit.\n  --no-skip-forks, -ns    Skips if the current repository is a fork\n  --directory DIRECTORY,  Set location for sync. If not set, cwd/GitSync/ is used.  \n  -d DIRECTORY\n  ---lang-dir, -ld        Segregate git project folders by language (May or may\n                          not work with existing projects).\n  --commit-all, -c        Commit everything to the current git repository.\n                          Add commit.txt with commit message to every git repo directory.\n                          Requests user for commit message if the txt file is not found.                        \n```\n\n\n## Contributing\n\n1. Fork it!\n2. Create your feature branch: `git checkout -b my-new-feature`\n3. Commit your changes: `git commit -am 'Add some feature'`\n4. Push to the branch: `git push origin my-new-feature`\n5. Submit a pull request :D\n\n\n\n## History\n\n**2017-03-11** - *Initial Release*\n  * Sync all git repositories to your machine\n  * Segregate repositories by their languages\n  * Batch commit changes to your profile\n  * Remote sync and update fork\n  * Option to ignore fork sync\n\n\n\n## TODO\n\n  * Clean up code\n  * Allow user to sync only the selected repositories\n\n\n\n## Credits\n\n  * [@MSV-Jarvis](https://github.com/MSF-Jarvis)\n\n\n\n## License\n\n```License\nMIT License\n\nCopyright (c) 2017 Chinmay Pai\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthunderbottom%2Fgitsync","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthunderbottom%2Fgitsync","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthunderbottom%2Fgitsync/lists"}