| 1201 | } |
| 1202 | |
| 1203 | void help_add_gpg_user (std::ostream& out) |
| 1204 | { |
| 1205 | // |--------------------------------------------------------------------------------| 80 chars |
| 1206 | out << "Usage: git-crypt add-gpg-user [OPTIONS] GPG_USER_ID ..." << std::endl; |
| 1207 | out << std::endl; |
| 1208 | out << " -k, --key-name KEYNAME Add GPG user to given key, instead of default" << std::endl; |
| 1209 | out << " -n, --no-commit Don't automatically commit" << std::endl; |
| 1210 | out << " --trusted Assume the GPG user IDs are trusted" << std::endl; |
| 1211 | out << std::endl; |
| 1212 | } |
| 1213 | int add_gpg_user (int argc, const char** argv) |
| 1214 | { |
| 1215 | const char* key_name = 0; |
no outgoing calls
no test coverage detected