美文网首页
Git 使用记录

Git 使用记录

作者: FullStackX | 来源:发表于2019-04-16 16:02 被阅读0次
    误删 commit 后撤销
    # 删除指定 commit
    git log
    git reset --hard xxx  #  xxx 为 commit sha1 值
    
    git reflog
    git reset --hard xxx  # xxx 为最前面的索引代码
    

    本地 clone 的时候出现问题:
    解决办法

    获取远程指定分支的过程

    # 首先要获取到远程的 master 分支
    git branch -c feature/encrypt_chat
    git merge origin feature/encrypt_chat
    
    # 设置http代理
    git config --global https.proxy https://127.0.0.1:1080
    
    # 取消http代理
    git config --global --unset http.proxy
    

    相关文章

      网友评论

          本文标题:Git 使用记录

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