エラー内容
fatal: could not read Username for 'https://bitbucket.org': terminal prompts disabled
Confirm the import path was entered correctly.
If this is a private repository, see https://golang.org/doc/faq#git_https for additional information.
こちらの記事に書いてある通り、以下のコマンドを走らせたらうまくいった。
git config --global url."git@bitbucket.org:".insteadOf "https://bitbucket.org/"
###
cat ~/.gitconfig
# This is Git's per-user configuration file.
[url "git@bitbucket.org:"]
insteadOf = https://bitbucket.org/
これでエラーが消えた。ありがたい。