2019-08-30から1日間の記事一覧

There is no tracking information for the current branch.

Git pullした時にremoteブランチに関連付けできていない場合に表示される。 確認 $ git branch -vv * master b3384d7 first commit 設定 masterブランチをorigin/masterに設定する例 $ git branch --set-upstream-to=origin/master master Branch 'master' s…

Gitlab-runnerで正規表現が使える

.gitlab-ci.yml stages: - build build: stage: build script: - echo "Hello World!" only: - /^dev/ tags: - testbuild gitでtagを付与してpushすることでpipelineが生成されるようになる。 上記の例だと、"dev"から始まるtagが対象

Action: Consider marking one of the beans as @Primary, updating the consumer to accept multiple beans, or using @Qualifier to identify the bean that should be consumed

*************************** APPLICATION FAILED TO START *************************** Description: Field sampleInterface in ******** required a single bean, but 3 were found: - oneExecutor: defined by method 'oneExecutor' in class path resou…