执行git命令时提示秘钥权限太开放

    1. @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
    2. @ WARNING: UNPROTECTED PRIVATE KEY FILE! @
    3. @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
    4. Permissions 0644 for '/Users/cloudyan/.ssh/gitee.com_rsa' are too open.
    5. It is required that your private key files are NOT accessible by others.
    6. This private key will be ignored.
    7. Load key "/Users/cloudyan/.ssh/gitee.com_rsa": bad permissions
    8. git@gitee.com: Permission denied (publickey).
    9. fatal: Could not read from remote repository.
    10. Please make sure you have the correct access rights
    11. and the repository exists.

    这个问题是由于
    权限的问题,需要文件设置权限:

    chmod 600 ~/.ssh/*

    1. chmod 600 ~/.ssh/gitee.com_rsa