Mac配置IDEA的项目使用Git

1、查看Mac系统中的Git版本,默认系统已安装Git:

git --version

2、查看是否已创建过SSH KEY:

cd ~/.ssh/
ls -al
Mac配置IDEA的项目使用Git

3、如果没有创建过SSH KEY,通过以下命令创建:

ssh-keygen -t rsa

4、查看生成的公钥:

cat ~/.ssh/id_rsa.pub
Mac配置IDEA的项目使用Git

5、将生成的公钥添加到Github上:

  1. 登录Github->Settings->SSH and GPG keys:

    Mac配置IDEA的项目使用Git
  2. 添加SSH key:

    Mac配置IDEA的项目使用Git
  3. 测试配置SSH是否成功:

    ssh -T git@github.com
    

    Mac配置IDEA的项目使用Git

6、测试IDEA连接Github是否成功:

  1. IDEA->Preference->Github->Add Account... -> 登录Github:

7、将IDEA中的项目上传到Github:s

  1. VCS->Import into Version Control->Share Project on GitHub

Mac配置IDEA的项目使用Git

上一篇:R使用system执行shell命令获取输出结果


下一篇:linux 之 命令提示符设置