X-Git-Url: http://www.git.cypherpunks.ru/?a=blobdiff_plain;f=usage.go;h=affd4540c56254502d11290fbb039fa514e65f99;hb=fa0728d6bc790672982ba006961077371d2b552d;hp=f9b8616b82723590fa2ca573a6f85c7a1f595703;hpb=a6510ac6225a3a93df9d27dc316a3c1c0fcde426;p=goredo.git diff --git a/usage.go b/usage.go index f9b8616..affd454 100644 --- a/usage.go +++ b/usage.go @@ -1,6 +1,6 @@ /* -goredo -- redo implementation on pure Go -Copyright (C) 2020 Sergey Matveev +goredo -- djb's redo implementation on pure Go +Copyright (C) 2020-2021 Sergey Matveev This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -26,7 +26,7 @@ import ( ) const ( - Version = "0.6.0" + Version = "1.2.0" Warranty = `This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 3 of the License. @@ -48,7 +48,7 @@ func versionGet() string { func usage() { fmt.Fprintf(os.Stderr, versionGet()+` -Copyright (C) 2020 Sergey Matveev +Copyright (C) 2020-2021 Sergey Matveev License GPLv3: GNU GPL version 3 This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. @@ -61,7 +61,7 @@ You can create them by running: goredo -symlinks. forcefully and *sequentially* build specified targets * redo-always always build current target. Unusable outside .do -* redo-cleanup {full,log,tmp} [...] +* redo-cleanup [-dry-run] {full,log,tmp} [...] remove either all goredo's related temporary files, or kept stderr logs, or everything (including .redo directories) related * redo-dot target [...] @@ -91,5 +91,7 @@ Additional environment variables: NO_COLOR -- disable messages colouring REDO_NO_SYNC -- disable files/directories explicit filesystem syncing REDO_TOP_DIR -- do not search for .do above that directory - (it can contain .redo/top as an alternative)`) + (it can contain .redo/top as an alternative) + REDO_INODE_NO_TRUST -- do not trust inode information (except for size) + and always check file's hash`) }