我试图将现有的bitbucket分支推到Heroku。我使用Node JS编写管道模板文件。尝试了几次之后,我的Bitbucket管道控制台出现以下错误:
+ git push https://git.heroku.com/artspacemvp.git
fatal: could not read Username for 'https://git.heroku.com': No such device or address
这是我的位桶中的管道文件:
image: node:6
clone:
depth: full
pipelines:
branches:
DevBranch:
- step:
name: Deploy to production
script:
- npm install
- git config --local credential.helper ""
- git push https://git.heroku.com/artspacemvp.git
如您所见,我没有推送master分支,因为我有一个名为DevBranch的远程分支。没有“复制粘贴”错误,表示链接正确。