xiaoming728

xiaoming728

Git技术

探讨如何为开源项目提交 issue

什么是 GitHub Issue GitHub 官方文档(About issues - GitHub Docs)给出的解释是 Use GitHub Issues to track ideas, feedback, tasks, or bugs for work on GitHub.,即通过 GitH
63
1
1
2024-04-09
Git小白专场: Merge the incoming changes into the current branc和Rebase the current branch on top of the

Git小白专场: Merge the incoming changes into the current branc和Rebase the current branch on top of the

原文链接:https://blog.csdn.net/qq_39463175/article/details/119636762/ 参考链接:https://www.atlassian.com/git/tutorials/merging-vs-rebasing#the-golden-rule-of-
84
1
0
2024-03-04
dcoker 环境搭建Gitlab

dcoker 环境搭建Gitlab

建议虚拟机内存2G以上 1.下载镜像文件 docker pull beginor/gitlab-ce:11.0.1-ce.0 注意:一定要配置阿里云的加速镜像 1. 创建GitLab 的配置 (etc) 、 日志 (log) 、数据 (data) 放到容器之外, 便于日后升级, 因此请先准备这三个目
18
0
0
2023-12-11
Git如何管理代码分支

Git如何管理代码分支

来源:微信公众号-Java爱好者 时间: 2021-05-21 连接:
26
1
0
2023-12-11
关于Gitlab权限管理

关于Gitlab权限管理

公司切入Gitlab来管理代码已经有一年多了,其中遇到很多权限问题,如没有权限clone、没有权限提交代码等等,这里做个总结. 权限分为访问权限和行为权限两个层次. 访问权限 - Visibility Level 这个是在建立项目时就需要选定的,主要用于决定哪些人可以访问此项目,包含3种 Priva
26
0
0
2023-12-11
常用 Git 命令清单

常用 Git 命令清单

来源:阮一峰的网络日志 作者: 阮一峰 日期: 2015年12月24日 链接:
26
0
0
2023-12-11
Git常用命令总结

Git常用命令总结

git init 在本地新建一个repo,进入一个项目目录,执行git init,会初始化一个repo,并在当前文件夹下创建一个.git文件夹. git clone 获取一个url对应的远程Git repo, 创建一个local copy. 一般的格式是git clone [url]. clone下
20
0
0
2023-12-11