Skip to content

Commit

Permalink
Merge pull request #1556 from jyn514/git-hooks
Browse files Browse the repository at this point in the history
Ignore global git hooks when importing rust-lang/rust git repo
  • Loading branch information
bjorn3 authored Jan 21, 2025
2 parents 728bc27 + ffe312e commit adcd89a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build_system/prepare.rs
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ fn init_git_repo(repo_dir: &Path) {
spawn_and_wait(git_add_cmd);

let mut git_commit_cmd = git_command(repo_dir, "commit");
git_commit_cmd.arg("-m").arg("Initial commit").arg("-q");
git_commit_cmd.arg("-m").arg("Initial commit").arg("-q").arg("--no-verify");
spawn_and_wait(git_commit_cmd);
}

Expand Down

0 comments on commit adcd89a

Please sign in to comment.