这里用来记录一些我可能用到的 git 命令. 每次去网上搜集都很麻烦, 还需要验证. 而这里的命令都经过了我的验证..

feat
: 新功能 (feature)update
: 在 feat 内的修改fix
: 修补 bugdocs
: 文档 (documentation)style
: 格式(不影响代码运行的变动)refactor
: 重构 (即不是新增功能,也不是修改 bug 的代码变动)perf
: 性能优化 (performance)test
: 增加测试thore
: 构建过程或辅助工具的变动
1
2
3
4
5
6
7
8
9
10
11
12
13
14
| # clone 特定tag或release
git clone -b v111 xxx.git
# 深度为1的clone
git clone --depth 1 xxx.git
# 代理克隆
git clone https://ghproxy.com/https://github.com/kentxxq/hugo.git
# 私有仓库配合token使用.
git clone https://user:your_token@ghproxy.com/https://ghproxy.com/https://github.com/kentxxq/hugo.git
# 克隆大文件失败
git config --global core.compression 0
git config --global http.postBuffer 500M
git config --global http.maxRequestBuffer 100M
|
1
2
3
4
5
6
7
8
9
| # 添加remote
git remote add gitea https://ken.kentxxq.com/admin1/learn-actions.git
# 修改origin地址
git remote set-url origin https://github.com/kentxxq/hugo.git
# 删除
git remote remove origin2
# 验证效果
git remote -v
|
1
2
3
4
5
6
7
8
9
| # 所有
git push
git tag 1.0.0
# 指定tag
git push origin <tag_name>
# 所有tag,不推荐
git push --tags
|
1
2
3
4
5
6
7
8
9
10
11
12
| # 新分支
git checkout --orphan new_branch
# 添加到暂存区
git add -A
# 提交
git commit -am "init"
# 删除原有的main
git branch -D main
# 重命名分支
git branch -m main
# 强制推送
git push -f origin main
|