Top "Git-log" questions

Shows the commit logs of a Git repo

Show only history of one branch in a Git log

I am using Git for my project and trying to follow best practice: I work on a topic branch When …

git branching-and-merging git-log
How to find commit when line was deleted/removed?

I have a deleted line in a file in my Git repository. I knew some of the missing text, and …

git git-log
How to show git log with branch name

I try git log w/ --decorate and --source options. But still can not get the branch name of commit 2f3…

git git-branch git-log
Why doesn't "git log -‌- foo" work for deleted file foo?

My repository underwent changes such as: ...some unrelated commits... Commit new file foo with 100 lines of content ...intervening commits, some …

git git-log
Git show all branches (but not stashes) in log

I have a Git alias that expands to: git log --graph --oneline --all --decorate According to man git log there …

git git-log git-stash
How do I show just the names and commit titles since a tag in Git?

I'm trying to use tags for release management in Git—I create a tag for each release. I'd like to …

git git-log
How to make Git log show all of today's commits?

I want to be able to see all of the commits I made today using git log. I came up …

git git-log
Git says branch is merged, but changes are apparently not present

I've worked myself into a situation that is not making sense to me. I'll try to describe it as best …

git merge git-log
Better way of getting a GIT commit message by short hash?

I am currently getting my commit message for a certain commit hash by using this below: hash='b55da97' …

git bash awk grep git-log
How to invert `git log --grep=<pattern>` or How to show git logs that don't match a pattern

I want to use git log to show all commits that do not match a given pattern. I know I …

git git-log