mirror of
https://gitcode.com/gh_mirrors/vue/vue-vben-admin
synced 2025-12-30 05:12:24 +00:00
11 lines
194 B
TypeScript
11 lines
194 B
TypeScript
import { exec, which } from 'shelljs';
|
|
|
|
function ignoreCaseGit() {
|
|
try {
|
|
if (which('git')) {
|
|
exec('git config core.ignorecase false ');
|
|
}
|
|
} catch (error) {}
|
|
}
|
|
ignoreCaseGit();
|