我试图在GitHub上使用CircleCI在围棋项目与围棋项目的默认模板。
作为参考,在这里是默认什么.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
在CircleCI上一个分支,是从不同的master
。
我怎样才能解决这个问题?