We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1619b98 commit 58e4aceCopy full SHA for 58e4ace
helix-vcs/src/git/test.rs
@@ -28,6 +28,8 @@ fn create_commit(repo: &Path, add_modified: bool) {
28
fn empty_git_repo() -> TempDir {
29
let tmp = tempfile::tempdir().expect("create temp dir for git testing");
30
exec_git_cmd("init", tmp.path());
31
+ exec_git_cmd("config user.email [email protected]", tmp.path());
32
+ exec_git_cmd("config user.name helix-test", tmp.path());
33
tmp
34
}
35
0 commit comments