wangzhao
Results
1
comments of
wangzhao
I find the solution from [https://git-scm.com/docs/racy-git](https://git-scm.com/docs/racy-git) This is script I use: ``` #!/bin/sh # from https://git-scm.com/docs/racy-git/en export GIT_FAT_VERBOSE=1 git status 2>&1 | grep "cache already exists" | awk '{print $6}'...