Git core.askPass config variable does not work

Update 3: GIT_ASKPASS now no longer works (as a relative path). Absolute paths work fine, but those cannot be used because they differ by platform.

Ended up using a credential helper instead.

git config --global credential.helper store
echo "https://user:$PKG_TOKEN@github.com" > ~/.git-credentials;

This topic was automatically closed 20 days after the last reply. New replies are no longer allowed.