aboutsummaryrefslogtreecommitdiff
path: root/cmd/backup.go
Commit message (Collapse)AuthorAge
* internal: move packages under this directory (#5836)Unknwon2019-10-24
| | | | | | | | | | | | | | | | | | * Rename pkg -> internal * Rename routes -> route * Move route -> internal/route * Rename models -> db * Move db -> internal/db * Fix route2 -> route * Move cmd -> internal/cmd * Bump version
* Enable Go modules (#5835)Unknwon2019-10-23
| | | | | | | | | | | | | | | | * Remove vendor * Enable Go modules * ci: add command to fetch dependencies * ci: update setting * ci: update settings * Require Go 1.11 * Rename module name to gogs.io/gogs
* repo: add changes to repository avatar feature (#5221)Unknwon2018-06-17
|
* restore: reset original created_unix after insert (#5264)Unknwon2018-06-09
|
* *: rename "gogits" to "gogs"Unknwon2018-05-27
|
* backup: use datetime string as default archive nameUnknwon2017-05-29
| | | | Because unix timestamp is not very human readable.
* Refactoring: rename modules -> pkgUnknwon2017-04-04
| | | | | | | | Reasons to change: 1. Shorter than 'modules' 2. More generally used by other Go projects 3. Corresponds to the naming of '$GOPATH/pkg' directory
* cmd/backup: able to specify archive name (#4320)Unknwon2017-03-23
| | | | Added flag '--archive-name' for backup command.
* cmd: able to backup and restoreUnknwon2017-02-27
Not very robust, must execute under correct workdir. Addresses #2072, #3708, #648