diff --git a/git-crypt.cpp b/git-crypt.cpp index 8f2ef90..8bbe823 100644 --- a/git-crypt.cpp +++ b/git-crypt.cpp @@ -48,25 +48,25 @@ static void print_usage (std::ostream& out) out << std::endl; // |--------------------------------------------------------------------------------| 80 characters out << "Common commands:" << std::endl; - out << " init generate a key and prepare repo to use git-crypt" << std::endl; - out << " status display which files are encrypted" << std::endl; - //out << " refresh ensure all files in the repo are properly decrypted" << std::endl; + out << " init generate a key and prepare repo to use git-crypt" << std::endl; + out << " status display which files are encrypted" << std::endl; + //out << " refresh ensure all files in the repo are properly decrypted" << std::endl; + out << " lock de-configure git-crypt and re-encrypt files in working tree" << std::endl; out << std::endl; out << "GPG commands:" << std::endl; - out << " add-gpg-key KEYID add the user with the given GPG key ID as a collaborator" << std::endl; - //out << " rm-gpg-key KEYID revoke collaborator status from the given GPG key ID" << std::endl; - //out << " ls-gpg-keys list the GPG key IDs of collaborators" << std::endl; - out << " unlock decrypt this repo using the in-repo GPG-encrypted key" << std::endl; - out << " lock check out encrypted versions of files in this repo" << std::endl; + out << " add-gpg-key KEYID add the user with the given GPG key ID as a collaborator" << std::endl; + //out << " rm-gpg-key KEYID revoke collaborator status from the given GPG key ID" << std::endl; + //out << " ls-gpg-keys list the GPG key IDs of collaborators" << std::endl; + out << " unlock decrypt this repo using the in-repo GPG-encrypted key" << std::endl; out << std::endl; out << "Symmetric key commands:" << std::endl; - out << " export-key FILE export this repo's symmetric key to the given file" << std::endl; - out << " unlock KEYFILE decrypt this repo using the given symmetric key" << std::endl; + out << " export-key FILE export this repo's symmetric key to the given file" << std::endl; + out << " unlock KEYFILE decrypt this repo using the given symmetric key" << std::endl; out << std::endl; out << "Legacy commands:" << std::endl; - out << " init KEYFILE alias for 'unlock KEYFILE'" << std::endl; - out << " keygen KEYFILE generate a git-crypt key in the given file" << std::endl; - out << " migrate-key FILE migrate the given legacy key file to the latest format" << std::endl; + out << " init KEYFILE alias for 'unlock KEYFILE'" << std::endl; + out << " keygen KEYFILE generate a git-crypt key in the given file" << std::endl; + out << " migrate-key FILE migrate the given legacy key file to the latest format" << std::endl; /* out << std::endl; out << "Plumbing commands (not to be used directly):" << std::endl;