2012-06-24 13:39:59 +02:00
|
|
|
#include "git-compat-util.h"
|
2011-12-10 11:31:11 +01:00
|
|
|
#include "credential.h"
|
2012-06-24 13:39:59 +02:00
|
|
|
#include "builtin.h"
|
2011-12-10 11:31:11 +01:00
|
|
|
|
|
|
|
static const char usage_msg[] =
|
2012-06-24 13:39:59 +02:00
|
|
|
"git credential [fill|approve|reject]";
|
2011-12-10 11:31:11 +01:00
|
|
|
|
2012-06-24 13:39:59 +02:00
|
|
|
int cmd_credential(int argc, const char **argv, const char *prefix)
|
2011-12-10 11:31:11 +01:00
|
|
|
{
|
|
|
|
const char *op;
|
|
|
|
struct credential c = CREDENTIAL_INIT;
|
|
|
|
|
|
|
|
op = argv[1];
|
|
|
|
if (!op)
|
|
|
|
usage(usage_msg);
|
|
|
|
|
|
|
|
if (credential_read(&c, stdin) < 0)
|
|
|
|
die("unable to read credential from stdin");
|
|
|
|
|
|
|
|
if (!strcmp(op, "fill")) {
|
|
|
|
credential_fill(&c);
|
2012-06-24 13:40:00 +02:00
|
|
|
credential_write(&c, stdout);
|
2012-06-24 13:39:59 +02:00
|
|
|
} else if (!strcmp(op, "approve")) {
|
2011-12-10 11:31:11 +01:00
|
|
|
credential_approve(&c);
|
2012-06-24 13:39:59 +02:00
|
|
|
} else if (!strcmp(op, "reject")) {
|
2011-12-10 11:31:11 +01:00
|
|
|
credential_reject(&c);
|
2012-06-24 13:39:59 +02:00
|
|
|
} else {
|
2011-12-10 11:31:11 +01:00
|
|
|
usage(usage_msg);
|
2012-06-24 13:39:59 +02:00
|
|
|
}
|
2011-12-10 11:31:11 +01:00
|
|
|
return 0;
|
|
|
|
}
|