Top "Git-log" questions

Shows the commit logs of a Git repo

Move file and directory into a sub-directory along with commit history

How can I move a directory and files to a sub-directory along with commit history? For example: Source directory structure: […

git git-log
git - Find commit where file was added

Say I have a file foo.js that was committed some time ago. I would like to simply find the …

git commit git-commit git-log
Git: How to list commits on this branch but not from merged branches

Suppose your git commit history looks like this: A---B---C---D---E---F master \ / X---Y---Z topic Is it possible to have git list only …

git branch git-branch git-log
How to git log in reverse order?

I recently learned that I can get hg log to print the history in reverse order with: hg log -r : …

git git-log
Color in git-log

When you run git log --decorate --pretty=oneline the output will have entries like (HEAD, refs/published/master, master) with …

git git-log
Why might git log not show history for a moved file, and what can I do about it?

I've renamed a couple of files using git mv, used git stash, had a quick look at HEAD (without changing …

git history dvcs rename git-log
View git log without merge commits

I'm trying to view commits made by a specific user, and want to remove any merges done by the user …

git git-log
Git show files that were changed in the last 2 days

How can I have a list with all the files that were changed in the last 2 days? I know about …

git file logging git-log fileupdate
How to read git log graph

In the git community book, it says Another interesting thing you can do is visualize the commit graph with the …

git git-branch git-log
Show all stashes in git log

I would like to see all stashes in git log output. Does anyone know if there is a way to …

git git-log git-stash