{"id":14523736,"url":"https://github.com/TimWitzdam/GitSave","last_synced_at":"2025-09-01T07:32:37.608Z","repository":{"id":255349610,"uuid":"845449524","full_name":"TimWitzdam/GitSave","owner":"TimWitzdam","description":"GitSave is a self-hosted and open-source application that backs up your Git repositories.","archived":false,"fork":false,"pushed_at":"2025-03-18T13:26:47.000Z","size":496,"stargazers_count":169,"open_issues_count":5,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-25T03:04:10.265Z","etag":null,"topics":["backup-tool","git","github","gitlab","self-hosted"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/TimWitzdam.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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,"zenodo":null}},"created_at":"2024-08-21T09:20:50.000Z","updated_at":"2025-05-21T09:15:35.000Z","dependencies_parsed_at":"2024-08-29T12:58:14.420Z","dependency_job_id":"fdc71a2b-2f68-423b-9159-f54e83cf6bc9","html_url":"https://github.com/TimWitzdam/GitSave","commit_stats":{"total_commits":70,"total_committers":3,"mean_commits":"23.333333333333332","dds":"0.15714285714285714","last_synced_commit":"b50ae98189391d7ac7a43c499516cbebb0c2af7b"},"previous_names":["timwitzdam/gitsave"],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/TimWitzdam/GitSave","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TimWitzdam%2FGitSave","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TimWitzdam%2FGitSave/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TimWitzdam%2FGitSave/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TimWitzdam%2FGitSave/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TimWitzdam","download_url":"https://codeload.github.com/TimWitzdam/GitSave/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TimWitzdam%2FGitSave/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273088760,"owners_count":25043557,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-01T02:00:09.058Z","response_time":120,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["backup-tool","git","github","gitlab","self-hosted"],"created_at":"2024-09-04T11:01:25.159Z","updated_at":"2025-09-01T07:32:37.597Z","avatar_url":"https://github.com/TimWitzdam.png","language":"TypeScript","readme":"\u003cdiv align=\"center\"\u003e\n    \u003cimg src=\"https://i.imgur.com/LIcWf9r.png\" alt=\"GitSave Logo\" /\u003e\n    \u003ch1 align=\"center\"\u003eGitSave\u003c/a\u003e\u003c/h1\u003e\n    \u003cp align=\"center\"\u003eEasily back up your Git repositories on a schedule.\u003c/p\u003e\n    \u003cbr /\u003e\n\u003c/div\u003e\n\n![GitSave 3 pages animation](https://i.imgur.com/i0SNNiL.gif)\n\nhttps://github.com/user-attachments/assets/301b28ca-6b72-490a-8efb-217e39fb73d3\n\n# Git happens...\n\nSo be prepared and keep backups of your own and favourite Git repositories.\n\n## 🛠️ Features\n\n- Easy to use and responsive web interface\n- Automated install using Docker\n- Scheduling of backups\n- Support for GitHub, GitLab and other Git platforms\n- Support for own authentication provider\n- Pause/resume schedules\n- View backup history\n- Support for backing up to a SMB share\n\n## 🚀 Deploy GitSave for yourself\n\n\u003e [!WARNING]\n\u003e Make sure to change the env variables \"JWT_SECRET\" and \"ENCRYPTION_SECRET\" to something secure. [This website](https://jwtsecret.com/) may help you with that.\n\u003e The ENCRYPTION_SECRET must be 32 characters long.\n\n### Single run command\n\n```bash\ndocker run -d --restart=always -p 3000:3000 -v gitsave:/app/data -v ./backups:/app/backups -e JWT_SECRET={YOUR_SECRET_HERE} -e ENCRYPTION_SECRET={YOUR_SECRET_HERE_32_CHARACTERS} -e DISABLE_AUTH=false --name GitSave timwitzdam/gitsave:latest\n```\n\n### Docker compose\n\n1. Create .env file\n\n```bash\n# You can generate a JWT_SECRET here: https://jwtsecret.com/\nJWT_SECRET=\"REPLACE_THIS\"\nDISABLE_AUTH=false\nENCRYPTION_SECRET=\"REPLACE_THIS_WITH_32_CHARACTERS_SECRET\"\n```\n\n2. Create `docker-compose.yml` file\n\n```yaml\nservices:\n  gitsave:\n    image: timwitzdam/gitsave:latest\n    container_name: GitSave\n    restart: always\n    ports:\n      - \"3000:3000\"\n    volumes:\n      - gitsave:/app/data\n      - ./backups:/app/backups\n    environment:\n      - JWT_SECRET=${JWT_SECRET:?error}\n      - DISABLE_AUTH=${DISABLE_AUTH:?error}\n      - ENCRYPTION_SECRET=${ENCRYPTION_SECRET:?error}\n\nvolumes:\n  gitsave:\n```\n\n## 👀 Any questions, suggestions or problems?\n\nYou're welcome to contribute to GitSave or open an issue if you have any suggestions or find any problems.\n\nI'm also available via mail: [contact@witzdam.com](mailto:contact@witzdam.com)\n","funding_links":[],"categories":["TypeScript"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FTimWitzdam%2FGitSave","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FTimWitzdam%2FGitSave","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FTimWitzdam%2FGitSave/lists"}