7 lines
228 B
Text
7 lines
228 B
Text
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
|