git简单配置

在安装完git后,在桌面任意处右击–Git Bash Here,在弹出的Git Bash命令框中输入下面的命令:

$ git config --global user.name “Your name” //配置用户名
$ git config --global user.email “Your Email address”  //配置用户邮箱地址
Eg:
$ git config --global user.name “Micheal”
$ git config --global user.email “[email protected]”

查看当前配置命令:
//查看用户名                 $ git config user.name  
//查看用户邮箱地址      $ git config user.email  
//查看所有配置             $ git config -l         

1.)检查SSH Key存在
如果存在id_rsa.pub 或 id_dsa.pub 文件,跳过此步。
$ cd ~/.ssh    // 其实就在用户目录下有个.ssh的文件夹$ ls
2.)创建SSH Key
创建ssh key时会提示自定名称和push时的密码(不是git登录密码),一般推荐略过,直接三个回车,如果创建成功会出来一个有图案的小框框。
$ ssh-keygen -t rsa -C "[email protected]"

你可能感兴趣的:(git简单配置)