我正在尝试在 GitHub 上的 Go 项目上使用 CircleCI 以及 Go 项目的默认模板。
作为参考,默认情况.circleci/config.yml 如下:
version: 2
jobs:
build:
docker:
- image: circleci/golang:1.12.7-buster
working_directory: /go/src/github.com/Permaweb/Host
steps:
- checkout
- run: go get -t -u -v ./...
- run: go test -v ./...
当作业运行时,我收到一个与代码本身完全无关的错误。
agent key RSA SHA256:L1iUIhjfKejEONe0TFU3TaWkNwE2O0xWF/09K7P8WnA returned incorrect signature type
There is no tracking information for the current branch.
Please specify which branch you want to merge with.
See git-pull(1) for details.
git pull <remote> <branch>
If you wish to set tracking information for this branch you can do so with:
git branch --set-upstream-to=origin/<branch> develop
git pull该错误发生在与 不同的分支上的 on CircleCI期间master。
我怎样才能解决这个问题?
明月笑刀无情
相关分类