安裝git 客戶端 git-scm.com/git
安裝git 插件 tortoisegit.org/download/vim
查看版本信息git --version
bash
配置我的名稱和電子郵件ssh
git config --global user.name 'sophie'
git config --global user.email sophie@163.com
複製代碼
生成sshkey編輯器
ssh-keygen -t rsa -C your_email
複製代碼
配置文本編輯器工具
git config --global core.editor emacs
複製代碼
配置差別比較工具spa
git config --global merge.tool vimdiff
複製代碼