From 0538d111fc284413b04876be9c4aea1044a62fae Mon Sep 17 00:00:00 2001 From: Andrew Ayer Date: Sat, 13 Sep 2014 11:24:32 -0700 Subject: [PATCH] Usage message: refer to gpg key argument as "user ID" not "key ID" This is the terminology that the gpg man page uses. --- git-crypt.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/git-crypt.cpp b/git-crypt.cpp index 8bbe823..c69bef7 100644 --- a/git-crypt.cpp +++ b/git-crypt.cpp @@ -54,8 +54,8 @@ static void print_usage (std::ostream& out) 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 << " add-gpg-key USRID add the user with the given GPG user ID as a collaborator" << std::endl; + //out << " rm-gpg-key USRID revoke collaborator status from the given GPG user 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;