美文网首页
Git初步使用

Git初步使用

作者: DeepChad | 来源:发表于2019-10-06 20:45 被阅读0次

    修改远程仓库

    修改命令:

    git remote set-url origin [url]
    

    先删后加

    git remote rm origin
    git remote add origin [url]
    

    查看修改用户名

    git config user.name
    git config user.email
    
    git config --global user.name "your name"
    git config --global user.email "your email"
    

    or

    vim ~/.gitconfig
    

    使用SSH

    检查本地:

    ls -al ~/.ssh
    

    生成新的ssh key:

    ssh-keygen -t rsa -C "your_email@example.com"
    

    后:

    ssh-add ~/.ssh/id_rsa
    

    最后去看id_rsa.pub的内容:

    cat id_rsa.pub
    

    相关文章

      网友评论

          本文标题:Git初步使用

          本文链接:https://www.haomeiwen.com/subject/ygqppctx.html