为什么要先把master merge 进 个人分支 再把个人分支merge 进 master?
假设个人分支有commit master也有别人commit过了然后我把本地master更新成最新的之后为什么要git checkout 个人分支 git merge mastergit checkout ma…
git:如何禁止dev分支合并到其他任意分支?
场景描述:公司内部本地测试环境的分支是dev分支,这个分支集成了其他开发分支和bug分支;开发分支和bug分支是从最新的master分支git checkout -b创建…
gitlab 关于 .gitlab-ci.yml 文件中预定义变量的问题
push tag 的时候想要打印当前分支的名称命令:git push origin dev-v1.1.1 结果:打印的并不是 dev 分支名称,而是 dev-v1.1.1 tag 名称查阅了文档描…
git merge 和git pull 在使用过程中的区别?
场景1: 当我新建一个分支 git branch p1 然后 git checkout p1 然后 git merge p 注释:p是另一个分支 然后 git push origin p1 此操作相当于新建一…
gitlab 500 error
搭建webhook时,遇到了500error,完全不知道该怎么解决,目前jenkins和gitlab在一起搭建的,配置保存时报的500,有大神知道是怎么回事吗?Ruby: ruby …
gitlab-ci 执行最简单的.gitlab-ci.yml配置都报错
一:.gitlab-ci.yml:stages: - test job_1: stage: test only: - master script: - echo 'start test' tags: - my-runner-tags 二:三:请教各位,我…
gitlab-ci执行 部署vue项目,报错 Using 1 worker with 2048MB memory limit
gitlab-ci执行 部署vue项目,执行npm run build 时报错Using 1 worker with 2048MB memory limit具体报错信息是这样的?$ npm run build [31](http://…
gitlab集成oauth2单点登录?
gitlab集成oauth2第三方登录后,再第三方登录过后,请求gitlab主页,却还要跳转到登录页点一下第三方登录,有没有办法跳过这一步,在第三方登录过后,请求gi…
Mac M1芯片 docker 安装 gitlab 启动后无法通过localhost:30000访问
docker destop 已启动的情况下。在终端,启动代码:sudo docker run --detach \ --hostname mygitlab.com \ --publish 30002:443 \ --publish 30000:8…
sourceTree使用fetch后从gitlab获取的代码并没有更新到本地仓库
在本地有一个文件夹作为本地仓库,gitlab上作为远端仓库现在使用sourceTree想把远端的代码更新到本地仓库,使用的是fetch(获取)功能,但是发现histo…
gitlab如何部署?
内容都已经安装完了到最后一步部署 我把gitlab.rb中配置了以下地址:external_url 'localhost' unicorn['port'] = 8101重启以后仍然连接不了求助~…
gitlab 自动化部署出现Host key verification failed.
这个问题搞了半天,查了各种资料没搞定,思路不清晰了,特意来请教下各位前辈是这样的,仓库放在gitlab.com上gitlab-runner 是安装的本地,配置上用的…
用gitlab-ci构建部署项目,报错cp: target ' ' is not a directory
stages: - build build: stage: build only: - master script: - cp -r dist/* /mnt/myproj/www tags: - testTag报错:$ cp -r dist/* /mnt/myproj/ww…