Git设置
查看用户名和邮箱地址
git config user.name
git config user.email
#删除配置:rm -rf ~/.gitconfig
设置邮箱和名字
git config --global user.email "abc@xyz.com" git config --global user.name "yourname"
github配置公钥
git clone推荐选择ssh,https需要输入用户名密码
git clone git@github.com:xxx/yyy.git 如果报错(Permission denied)时, 需要先配置通信公钥
运行代码ssh-keygen -t rsa -b 4096 -C "github注册邮箱"
之后一直按回车,生成 ~/ssh/id_rsa.pub 公钥文件
用vim或者cat ~/.ssh/id_rsa.pub查看并复制公钥,把公钥文件里的内容拷贝添加到github的settings > SSH keys里。
查看是否生成过公钥cd ~/.ssh,ls查看秘钥列表
##删除秘钥:rm -rf ~/.ssh
Git 别名
方案一
# 设置 git config --global alias.ci commit # 执行 git ci
可以在 ~/.gitconfig 里查看和设置 alias
方案二
修改 ~/.bashrc,在文件末尾加上
alias gci="git commit"
保存后,执行 source ~/.bash
之后,可以用 gci -am "bugfix" 代替 git commit -am "bugfix"