一、安裝完git查看版本 git --versiongit
二、配置用戶名郵箱cookie
git config --global user.name "chencheng"session
git config --global user.email "15875658583@163.com"
ssh
三、設置下郵箱和用戶名spa
git config user.nameblog
git config user.emailstring
四、查看是否有.ssh文件it
cd c:\user\ChenCheng\.sshio
五、進入根目錄 cd ~class
六、生成ssh ssh-keygen -t rsa -C "15875658583@163.com" 按三次回車結束頁面
七、進入和查看 cd ~/.ssh ls cat id_rsa.pub
遇到每次都要輸入密碼用一下命令配置
使用 git config --global credential.helper store 的方式永久記住帳號密碼,只須要輸入一次。
一、輸入git config --global credential.helper store
二、檢查 /home/用戶名/.gitconfig 會新增一項 helper = store
若是成功了,只須要輸入一次密碼,就記錄到本地,之後不須要再輸入了(相似cookie和session)