美文网首页
git 使用记录

git 使用记录

作者: 前端喵 | 来源:发表于2020-03-27 16:40 被阅读0次

    Git使用

    1. 关联本地和远程仓库 git remote add <name> <url>
    2. 查看本地版本 git remote -v

    git update-index --assume-unchanged FILENAME 路径+文件名

    git checkout -b newBranch branchA 从branchA拉去新分支newBranch代码和branchA保持一致不是master

    文件在仓库中存在,但是不想每次修改后就提交(这样的文件一般是与本机开发环境相关的文件),可以这样操作:

    1. 打开.git/config文件
    2. 增加
      [alias]
      ignore = update-index --assume-unchanged
      unignore = update-index --no-assume-unchanged
      ignored = !git ls-files -v | grep "^[[:lower:]]"
    3. 运行 git ignore filename

    这样,再次提交时这个文件的修改就不会被提交。如果需要再次提交这个文件,运行
    git unignore filename

    相关文章

      网友评论

          本文标题:git 使用记录

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