美文网首页Git 相关
Git操作与解决方法

Git操作与解决方法

作者: 越前君 | 来源:发表于2019-12-30 08:23 被阅读0次

    本文更新于 2020-04-20,本篇为个人笔记,记录用。

    1. 清除 git,即删除本地 .git 文件。命令:rm -rf .git
    2. Git 远程推送The authenticity of host 'github.com (52.74.223.119)'问题,解决:The authenticity of host 'github.com (52.74.223.119)' can't be established. 问题
    3. 生成ssh的方法和配置
    4. 生成 Deploy Keys,规则与 ssh key 一样
    1. ssh-keygen -f ~/.ssh/deploy_key_repo1(生成保存)
    2. ssh-add ~/.ssh/deploy_key_repo1(添加路径到认证列表)
    3. ssh-add -l(查看认证列表,看是否成功添加)
    4. cat ~/.ssh/deploy_key_repo1.pub | pbcopy(复制 deploy public key)
    1. git@github.com: Permission denied (publickey).
    2. Git: The key you are authenticating with has been marked as read only. 这里

    其他

    1. 配置邮箱和用户名
    $ git config --global user.name "xxx"       
    $ git config --global user.email "xxx"
    
    # 以上是设置全局用户,如果是单一项目则:
    $ git config user.name "xxx"       
    $ git config user.email "xxx"
    
    1. 提交到暂存(全部)
    $ git add -A -- .
    
    1. 查看当前用户信息以及其他的一些信息
    $ git config --list
    
    1. 将暂存提交到 git 库
    git commit -m "添加你的注释,一般是一些更改信息"
    
    1. 将本地的库链接到远程
    git remote add origin https://github.com/toFrankie/HelloNode.git
    
    1. push
    $ git pull origin master
    

    相关文章

      网友评论

        本文标题:Git操作与解决方法

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