美文网首页
Git 常用命操作

Git 常用命操作

作者: visitor009 | 来源:发表于2019-12-26 17:28 被阅读0次

    将本地仓库与线上仓库关联

    git add .
    git commit -m ''
    git remote add origin git地址
    git push -u origin master
    

    配置个人信息

    git config --global user.name "……" #定义全局的用户名
    git config --global user.email "……" #定义全局的邮件地址
    git config --list #查看配置信息
    

    撤销

    // 撤销 git add 提交的文件
    git reset HEAD [file]
    
    // 重新commit,覆盖上一次的
    git commit --amend
    
    //  撤销文件的修改,回到上一次commit或开始的版本
    git checkout -- [file]
    

    提交时保存账号密码git config --global credential.helper store

    git教程
    git 命令

    相关文章

      网友评论

          本文标题:Git 常用命操作

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