I would like to display git log from my current directory, while repo is located in different directory.
For example I have git repository in /tmp/fake_git/
:~$ cd /tmp/fake_git/
:/tmp/fake_git$ git log
commit edb15e07c007237c8c06fefbb5ffd8168f4ee3d7
[...] And so on it works
But when I try to do it from other directory it doesn't
:~$ cd /
:/$ git log /tmp/fake_git/
fatal: Not a git repository (or any of the parent directories): .git
:/$ git log -- /tmp/fake_git/
fatal: Not a git repository (or any of the parent directories): .git
:~$