I have some php files in a Folder A (which is a git project). In these php file I want to execute "git log" but for the folder B. Folder B is another git project (so log is different between A and B).
How I can do that with shell command ?
I have some php files in a Folder A (which is a git project). In these php file I want to execute "git log" but for the folder B. Folder B is another git project (so log is different between A and B).
How I can do that with shell command ?
from, man git
:
you can do it with the --git-dir parameter, before passing any commands.
git --git-dir=/foo/bar log