How do I capture output of git fsck --full --verbose
in a log file?
I tried with
git fsck --full --verbose > log
and
git fsck --full --verbose | tee log
but neither is working for me. What should I do?
How do I capture output of git fsck --full --verbose
in a log file?
I tried with
git fsck --full --verbose > log
and
git fsck --full --verbose | tee log
but neither is working for me. What should I do?
The issue got resolved by switching to bash from csh.