zoukankan      html  css  js  c++  java
  • ubuntu下git安装及使用

    1.设置用户名和邮箱

    git config --global user.name "xxxx"
    git config --global user.email "xxx@xxx.edu.cn"
    

    2.生成秘钥,回车3下,不设置密码

    ssh-keygen -t rsa -C "xxx@xxx.edu.cn" -f ~/.ssh/id_rsa_github
    

    3. ssh目录在etc/ssh下

    ~/.ssh/config配置文件如下

    #自己私人用的 GitHub 帳號,id_rsa 就是我自己原本用的 ssh key
    Host github.com
            User xxx
            Hostname ssh.github.com
            PreferredAuthentications publickey
            IdentityFile ~/.ssh/id_rsa_github
            Port 443
    
    #公司工作用的 GitHub 帳號,此處的 COMPANY 你可以自行取名
    Host gitlab.xxx.com
            Hostname gitlab.xxx.com
            Port xxx
            User xxx
            IdentityFile ~/.ssh/id_rsa
    
    Host xx-*
            HostName %h
            User xxx
            Port xxx
    
    Host xxx-*
            HostName %h
            User xxx
            Port xxx
    
    Host xxx-*
            HostName %h
            User xxx
            Port xxx
    

    4.上传.pub公钥到github

    5.可以git clone了

    如何在本地使用git

    http://jingyan.baidu.com/album/295430f1c62c900c7e0050fd.html?picindex=1

    参考:1.  ubuntu下git安装及使用

        http://www.cnblogs.com/jackge/archive/2013/08/17/3264801.html

       2.  多 SSH Key 管理技巧与 Git 多账户登录问题

        http://blog.csdn.net/forlong401/article/details/50902983

       3.  执行ssh-add时出现Could not open a connection to your authentication agent

        http://www.cnblogs.com/sheldonxu/archive/2012/09/17/2688281.html    ssh-agent bash

       4.  转载:ubuntu下github connect错误解决

    ssh git@github.com
    ssh: connect to host github.com port 22: Connection timed out
    

     解决办法:(linux下)

    cd ~/.ssh
    touch config
    

     在.ssh目录下创建一个config文件,输入如下内容:

    Host github.com
    User xxx@163.com (你注册github时的邮箱,这里使用注册的用户名也行)
    Hostname ssh.github.com
    PreferredAuthentications publickey
    IdentityFile ~/.ssh/id_rsa
    Port 443
    

     测试是否连通

    ssh -T git@github.com
    The authenticity of host '[ssh.github.com]:443 ([207.97.227.248]:443)' can't be established.
    RSA key fingerprint is 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48.
    Are you sure you want to continue connecting (yes/no)? y
    Please type 'yes' or 'no': yes
    Warning: Permanently added '[ssh.github.com]:443,[207.97.227.248]:443' (RSA) to the list of known hosts.
    Hi zhou411424! You've successfully authenticated, but GitHub does not provide shell access.
    出现Hi xxx!......表示连接成功。
    

    ssh免密码登陆设置时Authentication refused: bad ownership or modes错误解决方法

    sshd为了安全,对属主的目录和文件权限有所要求。如果权限不对,则ssh的免密码登陆不生效。

    用户目录权限为 755 或者 700,就是不能是77x。
    .ssh目录权限一般为755或者700。
    rsa_id.pub 及authorized_keys权限一般为644
    rsa_id权限必须为600
    

    centos用户重启ssh服务

    systemctl restart sshd
    

    禁止远程root用户登录,修改 /etc/ssh/sshd_config

    PermitRootLogin no
    

    修改端口,将Port改成其他的端口

    参考:https://blog.csdn.net/tianlesoftware/article/details/6201898

  • 相关阅读:
    css 之 input 的提交样式
    JSON 没错又是它!!!
    json 对象解析 function 里面的return 和return false 查找字符串最后的结尾字符
    sql 中update 对字符串进行批量替换
    17 常用模块
    16 模块深入
    15 模块
    14 生成器,生成器表达式,内置函数,面向过程编程
    13 迭代器
    12 递归 三元表达式 列表生成式 字典生成式 匿名函数
  • 原文地址:https://www.cnblogs.com/tonglin0325/p/5440774.html
Copyright © 2011-2022 走看看