Git log 提交类型改为数字型
1. 方法 1:修改 Git 全局配置 运行以下命令修改 Git 的日期格式配置: ```bash git config --global log.date format:%d.%m.%Y ``` 或使用 ISO 标准格式: ```bash git config --global log.date iso ``` 这会将日期显示为数字格式(如 …
|
67
|
|
166 字
|
1 分钟内
Git
2024/11/4 名称 git add - 添加文件内容到索引 实例 git add . git commit - 记录仓库的修改 --amend 撤回最新提交的备注内容重新输入 git commit -m "备注内容" git commit --amend git log - 显示提交日志 查看当前最新版本和之前的区别 git log --st…
|
157
|
|
135 字
|
2 分钟