History in GitHub website doesn't show commits done from root.
Is there a way to find commits done from root?
Thanks!
History in GitHub website doesn't show commits done from root.
Is there a way to find commits done from root?
Thanks!
If root
is the author of the commits you can use the --author
flag:
git log --author root
If by root you mean a branch named root, then you can go into the command line and type in:
git log | grep -B 2 'root'
This will return all of the commits done by root, and the commit hash.