Merge branch 'jk/pretty-reglog-ent'
* jk/pretty-reglog-ent: pretty: give placeholders to reflog identitymaint
commit
adb86762e5
|
@ -132,6 +132,10 @@ The placeholders are:
|
||||||
- '%N': commit notes
|
- '%N': commit notes
|
||||||
- '%gD': reflog selector, e.g., `refs/stash@\{1\}`
|
- '%gD': reflog selector, e.g., `refs/stash@\{1\}`
|
||||||
- '%gd': shortened reflog selector, e.g., `stash@\{1\}`
|
- '%gd': shortened reflog selector, e.g., `stash@\{1\}`
|
||||||
|
- '%gn': reflog identity name
|
||||||
|
- '%gN': reflog identity name (respecting .mailmap, see linkgit:git-shortlog[1] or linkgit:git-blame[1])
|
||||||
|
- '%ge': reflog identity email
|
||||||
|
- '%gE': reflog identity email (respecting .mailmap, see linkgit:git-shortlog[1] or linkgit:git-blame[1])
|
||||||
- '%gs': reflog subject
|
- '%gs': reflog subject
|
||||||
- '%Cred': switch color to red
|
- '%Cred': switch color to red
|
||||||
- '%Cgreen': switch color to green
|
- '%Cgreen': switch color to green
|
||||||
|
|
25
pretty.c
25
pretty.c
|
@ -822,6 +822,23 @@ static void rewrap_message_tail(struct strbuf *sb,
|
||||||
c->indent2 = new_indent2;
|
c->indent2 = new_indent2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int format_reflog_person(struct strbuf *sb,
|
||||||
|
char part,
|
||||||
|
struct reflog_walk_info *log,
|
||||||
|
enum date_mode dmode)
|
||||||
|
{
|
||||||
|
const char *ident;
|
||||||
|
|
||||||
|
if (!log)
|
||||||
|
return 2;
|
||||||
|
|
||||||
|
ident = get_reflog_ident(log);
|
||||||
|
if (!ident)
|
||||||
|
return 2;
|
||||||
|
|
||||||
|
return format_person_part(sb, part, ident, strlen(ident), dmode);
|
||||||
|
}
|
||||||
|
|
||||||
static size_t format_commit_one(struct strbuf *sb, const char *placeholder,
|
static size_t format_commit_one(struct strbuf *sb, const char *placeholder,
|
||||||
void *context)
|
void *context)
|
||||||
{
|
{
|
||||||
|
@ -963,6 +980,14 @@ static size_t format_commit_one(struct strbuf *sb, const char *placeholder,
|
||||||
if (c->pretty_ctx->reflog_info)
|
if (c->pretty_ctx->reflog_info)
|
||||||
get_reflog_message(sb, c->pretty_ctx->reflog_info);
|
get_reflog_message(sb, c->pretty_ctx->reflog_info);
|
||||||
return 2;
|
return 2;
|
||||||
|
case 'n':
|
||||||
|
case 'N':
|
||||||
|
case 'e':
|
||||||
|
case 'E':
|
||||||
|
return format_reflog_person(sb,
|
||||||
|
placeholder[1],
|
||||||
|
c->pretty_ctx->reflog_info,
|
||||||
|
c->pretty_ctx->date_mode);
|
||||||
}
|
}
|
||||||
return 0; /* unknown %g placeholder */
|
return 0; /* unknown %g placeholder */
|
||||||
case 'N':
|
case 'N':
|
||||||
|
|
|
@ -295,6 +295,18 @@ void get_reflog_message(struct strbuf *sb,
|
||||||
strbuf_add(sb, info->message, len);
|
strbuf_add(sb, info->message, len);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const char *get_reflog_ident(struct reflog_walk_info *reflog_info)
|
||||||
|
{
|
||||||
|
struct commit_reflog *commit_reflog = reflog_info->last_commit_reflog;
|
||||||
|
struct reflog_info *info;
|
||||||
|
|
||||||
|
if (!commit_reflog)
|
||||||
|
return NULL;
|
||||||
|
|
||||||
|
info = &commit_reflog->reflogs->items[commit_reflog->recno+1];
|
||||||
|
return info->email;
|
||||||
|
}
|
||||||
|
|
||||||
void show_reflog_message(struct reflog_walk_info *reflog_info, int oneline,
|
void show_reflog_message(struct reflog_walk_info *reflog_info, int oneline,
|
||||||
enum date_mode dmode)
|
enum date_mode dmode)
|
||||||
{
|
{
|
||||||
|
|
|
@ -14,6 +14,7 @@ extern void show_reflog_message(struct reflog_walk_info *info, int,
|
||||||
enum date_mode);
|
enum date_mode);
|
||||||
extern void get_reflog_message(struct strbuf *sb,
|
extern void get_reflog_message(struct strbuf *sb,
|
||||||
struct reflog_walk_info *reflog_info);
|
struct reflog_walk_info *reflog_info);
|
||||||
|
extern const char *get_reflog_ident(struct reflog_walk_info *reflog_info);
|
||||||
extern void get_reflog_selector(struct strbuf *sb,
|
extern void get_reflog_selector(struct strbuf *sb,
|
||||||
struct reflog_walk_info *reflog_info,
|
struct reflog_walk_info *reflog_info,
|
||||||
enum date_mode dmode,
|
enum date_mode dmode,
|
||||||
|
|
|
@ -267,6 +267,12 @@ test_expect_success '%gd shortens ref name' '
|
||||||
test_cmp expect.gd-short actual.gd-short
|
test_cmp expect.gd-short actual.gd-short
|
||||||
'
|
'
|
||||||
|
|
||||||
|
test_expect_success 'reflog identity' '
|
||||||
|
echo "C O Mitter:committer@example.com" >expect &&
|
||||||
|
git log -g -1 --format="%gn:%ge" >actual &&
|
||||||
|
test_cmp expect actual
|
||||||
|
'
|
||||||
|
|
||||||
test_expect_success 'oneline with empty message' '
|
test_expect_success 'oneline with empty message' '
|
||||||
git commit -m "dummy" --allow-empty &&
|
git commit -m "dummy" --allow-empty &&
|
||||||
git commit -m "dummy" --allow-empty &&
|
git commit -m "dummy" --allow-empty &&
|
||||||
|
|
Loading…
Reference in New Issue