@@ -37,14 +37,26 @@ export const GIT_APPS: Readonly<IAppSetup[]> = [
3737 deps : [ 'Git' ] ,
3838 } ,
3939 {
40- name : 'Increase credential cache timeout ' ,
41- description : 'Increase the cache time for using your credentials from Keychain - 1 month ' ,
40+ name : 'MacOS Keychain store credentials for HTTPS remotes ' ,
41+ description : 'Use macOS Keychain to store credentials ' ,
4242 group : 'git' ,
43- openUrl : ( ) => `open https://git-scm.com/docs/git-credential-cache ` ,
43+ openUrl : ( ) => `open https://git-scm.com/docs/gitcredentials ` ,
4444 commands : ( ) => [
4545 // avoid lock for other `git config` options
4646 'sleep 2' ,
47- `git config --global credential.helper 'cache --timeout 2592000'` ,
47+ `git config --global credential.helper osxkeychain` ,
48+ ] ,
49+ deps : [ 'Git' ] ,
50+ } ,
51+ {
52+ name : 'Disable SSL' ,
53+ description : 'Disable SSL for Git operations' ,
54+ group : 'git' ,
55+ openUrl : ( ) => `open https://git-scm.com/docs/git-config#Documentation/git-config.txt-httpsslVerify` ,
56+ commands : ( ) => [
57+ // avoid lock for other `git config` options
58+ 'sleep 3' ,
59+ `git config http.sslVerify "false"` ,
4860 ] ,
4961 deps : [ 'Git' ] ,
5062 } ,
@@ -56,7 +68,7 @@ export const GIT_APPS: Readonly<IAppSetup[]> = [
5668 openUrl : ( ) => `open https://git-scm.com/docs/git-push#Documentation/git-push.txt-pushautoSetupRemote` ,
5769 commands : ( ) => [
5870 // avoid lock for other `git config` options
59- 'sleep 3 ' ,
71+ 'sleep 4 ' ,
6072 `git config --global --bool push.autoSetupRemote true` ,
6173 ] ,
6274 deps : [ 'Git' ] ,
0 commit comments