config
git 1 2 3 4 5 6 git config --global user.name "phoenixtree" #设置用户名 git config --global user.email "wu_ton-g@foxmail.com" #设置用户邮箱 #########第一次SSH认证时候用############## rm -fr ~/.ssh #删除本地密码对 ssh-keygen -t rsa -C "wu_ton-g@foxmail.com" #生成密码对 cp ~/.ssh/id_rsa.pub . #拷贝密码锁到 git目录 maven 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 <?xml version="1.0" encoding="UTF-8"?> <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> <!-- localReposi……