新增:《内网CentOS服务器设置网络代理》

This commit is contained in:
2022-08-29 21:47:45 +08:00
parent 4fb37f165b
commit 38026e021a
6 changed files with 113 additions and 28 deletions

View File

@@ -22,13 +22,13 @@ tags:
1. 修改最后一次提交的作者和邮箱信息
```bash
```sh
git commit --amend --author="Charles7c <charles7c@126.com>"
```
2. 最后将本地的修改强制推送到远程仓库即可(如果你没推送到远程仓库,这步就不需要执行了)
```bash
```sh
git push --force
```
@@ -36,7 +36,7 @@ tags:
**C** 另外说一下,如果你要修改最后一次提交记录的 commit message执行下面的命令就可以了。
```bash
```sh
git commit --amend -m "要修改为的提交信息"
```