From b98fe272fc98db8d0205558b8b20c350da200edd Mon Sep 17 00:00:00 2001
Subject: [PATCH 0/1] Fix tests affected by user config
As I discussed a few months ago, a couple of tests were failing due to them being affected by my user-level git configuration. We've tried the way of setting the GIT_CONFIG_HOME=/dev/null environment variables through cargo, but it did not work very well as it needs to be added to the user-level cargo/config.toml (not project-level). I then figured that the easiest way to fix this was to set the problematic diff.mnemonicPrefix config option to false using the propper git2 API for the testing repos. It worked!