On Mon, Dec 16, 2019 at 01:32:32PM -0800, Denton Liu wrote: > I recently switched my workflow to use this credential helper and I > noticed a couple of problems: > > 1. The interpreter path was hardcoded to #!/usr/bin/perl > > 2. The script refuses to run outside of a Git repository > > This patch series should fix these problems. Both of these patches look good to me. It does make me wonder if many people are using credential-netrc, given these pretty obvious problems. You're certainly welcome to use it if it works for you, but I am curious what made you pick it versus one of the other more advanced helpers. I assume you're using a gpg-encrypted netrc (if not, you should probably just use credential-store). For "read-only" password access, I find the combination of pass[1] with config like this is a bit nicer: [credential "https://github.com"] username = peff helper = "!f() { test $1 = get && echo password=`pass github/oauth`; }; f" -Peff [1] https://www.passwordstore.org/