跳到主要内容

Git

Config email and username:

git config --global user.name "username"
git config --global user.email useremail@qq.com
git config --global core.editor vim
git config --global credential.helper store
git config --list

HTTP Credential

首先打开 git config --global credential.helper store

然后生成一个 PTA (Personal access tokens) https://github.com/settings/tokens

Clone 一个私有仓库即可进入交互式登录命令行,然后输入用户名和 PTA 登录(非密码),git 就会记住 PTA,以后将不再需要登录。

[[Git GPG Signature]]

[[Git Proxy Configuration]]

Refs:

“Branch early, branch often”
Git 内部原理图解——对象、分支以及如何从零开始建仓库