I encounter a git issue when I run these commands, they are used to sync up with origin/master:
1 | git_clean() { |
I get errors:
1 | warning: inexact rename detection was skipped due to too many files. |
Try to set rename.limit
to larger value and run commands again but that does not help, https://stackoverflow.com/questions/4722423/how-to-merge-two-branches-with-different-directory-hierarchies-in-git
1 | git config merge.renameLimit 999999 |
So far these commands help:
1 | git reset --hard origin/master |