8 lines
228 B
Plaintext
8 lines
228 B
Plaintext
|
if [[ -n "$(which-command git)" ]]; then
|
||
|
alias gitcd='cd $(git rev-parse --show-toplevel) '
|
||
|
|
||
|
if [[ -n $(git credential-manager-core --version 2>/dev/null) ]]; then
|
||
|
export GCM_CREDENTIAL_STORE=plaintext
|
||
|
fi
|
||
|
fi
|