git
死磕音视频
这个作者很懒,什么都没留下…
展开
-
如何在Dockerfile中clone 私库
前言我们经常会在Dockerfile中使用git clone 仓库FROM maven:3.6.0-jdk-8-alpine AS buildRUN sed -i "s/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g" /etc/apk/repositories \ && apk add --no-cache gitRUN git clone https://私库如果仓库是公开的也没有什么问题,如果是私库的话,我们会面临以下原创 2020-12-01 20:56:28 · 6553 阅读 · 0 评论 -
git常见问题记录
fatal: refusing to merge unrelated historiesgit merge origin/druidfatal: refusing to merge unrelated histories这里的问题的关键在于:fatal: refusing to merge unrelated histories你可能会在git pull或者git push中都有可能会遇到,这是因为两个分支没有取得关系。那么怎么解决呢?在你操作命令后面加–allow-unrelated-hist原创 2020-09-14 14:37:24 · 461 阅读 · 0 评论