├── .gitignore ├── LICENSE ├── README.md └── github_backup.sh /.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !github_backup.sh 3 | !.gitignore 4 | !LICENSE 5 | !README.md 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oros42/github_backup/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oros42/github_backup/HEAD/README.md -------------------------------------------------------------------------------- /github_backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oros42/github_backup/HEAD/github_backup.sh --------------------------------------------------------------------------------