git操作
最近更新:2025-06-01 | 字数总计:67 | 阅读估时:1分钟 | 阅读量:次
- git添加用户名和邮箱
- 原先有gitmodule,现在子git不想继续了,就去除gitmodule
git添加用户名和邮箱
1 2
| git config --global user.name "你的用户名" git config --global user.email "你的邮箱@example.com"
|
原先有gitmodule,现在子git不想继续了,就去除gitmodule
1 2
| git submodule deinit -f -- themes/tranquility git rm -f themes/tranquility
|
包括万恶的缓存
1
| git rm --cached themes/tranquility
|
2025-03-01 该篇文章被 HopoZ 打上标签: git 归为分类: daily