| #include "git-compat-util.h" |
| static const char usage_msg[] = |
| "git credential (fill|approve|reject)"; |
| int cmd_credential(int argc, const char **argv, const char *prefix UNUSED) |
| struct credential c = CREDENTIAL_INIT; |
| git_config(git_default_config, NULL); |
| if (argc != 2 || !strcmp(argv[1], "-h")) |
| if (credential_read(&c, stdin) < 0) |
| die("unable to read credential from stdin"); |
| if (!strcmp(op, "fill")) { |
| credential_write(&c, stdout); |
| } else if (!strcmp(op, "approve")) { |
| } else if (!strcmp(op, "reject")) { |