2025.04.29

语义版本控制(Semantic Versioning,简称 SemVer)

在绝大多数项目中,尤其是开源社区,采用的都是语义版本控制(Semantic Versioning,简称 SemVer)。 SemVer 建议将版本号划分为三个部分: 12主版本号.次版本号.补丁版本号...

阅读全文
2025.01.02

Git LFS基本使用

1. Git LFS 简介 Git LFS: An open source Git extension for versioning large filesGit Large File Storage...

阅读全文
2024.07.18

gitea在ubuntu安装

创建用户和用户组1sudo adduser --system --group --disabled-password --shell /bin/bash --home /home/git --geco...

阅读全文
2024.04.21

clone github代码出现Operation timed out解决

1234567➜ ~ git clone git@github.com:pkg6/go-requests.gitCloning into 'go-requests'...ssh:...

阅读全文
2024.04.21

git免密拉取代码

方式1: 通过公钥和私钥进行ssh拉去代码生成公钥和私钥命令 1ssh-keygen 拉去代码 1git clone git@github.com:username/repository.git ...

阅读全文
2024.04.21

通过shell脚本clone组织下所有仓库

获取github组织下仓库12345curl --silent \ -H "Accept: application/vnd.github+json" \ ...

阅读全文