Home > Back-end >  git log: missing newline at end of output
git log: missing newline at end of output

Time:07-06

I have a directory containing many git repos.

I want to search for commits containing "foo" in the git repos with git log -G foo.

This does not work:

for repo in *; do (cd $repo; git log -G request --pretty=format:"           
  • Related