magnump0
magnump0

Reputation: 2566

What means (q) after sha in git log?

What exactly means this (q) right after sha number in my git log? I use this shortcut in .gitconfig:

[alias]
        lol = log --graph --decorate --pretty=oneline --abbrev-commit

And typing git lol gives a line: * 068533d (q) + short description

Upvotes: 0

Views: 108

Answers (1)

GreenOlvi
GreenOlvi

Reputation: 56

I suppose it's a branch name. Can you check if you have branch named q when you execute git branch?

Upvotes: 4

Related Questions