Skip to content

Instantly share code, notes, and snippets.

View notnotype's full-sized avatar
📖
Studying...

Notype notnotype

📖
Studying...
View GitHub Profile
#
# File name:aria2.conf
#
## 文件保存设置 ##
# 设置代理服务器
# 默认:无
all-proxy=http://127.0.0.1:7890/
@carlosmcevilly
carlosmcevilly / gist:2221249
Last active April 3, 2025 12:47
fix git commit with wrong email address in git config, before pushing
If:
- you add and commit with the wrong email address in git, and
- your remote has a hook set up to prevent you from pushing with the bad address
Then you need to amend the author of your commit before push can succeed:
1. fix your email address in git config:
$ git config user.name "Your Name"