Ignore changes to a tracked file

后端 未结 2 1718
名媛妹妹
名媛妹妹 2020-12-01 17:00

I want to change a tracked file for development only, but keep the tracked version unchanged.

Most \"solutions\" for this suggest

git update-index --         


        
2条回答
  •  Happy的楠姐
    2020-12-01 17:58

    Quick Fix

    This is what I think you're trying to do, change a file, but ignore it when committing.

    git update-index --skip-worktree my-file
    

    Here is a good answer regarding the difference between assume-unchanged and skip-worktree.

    Git will still warn if you try to merge changes into my-file. Then you will have to "unskip" the file, merge it and "re-skip" it.

    git update-index --no-skip-worktree my-file
    # merge here
    git update-index --skip-worktree my-file
    

    There can also be problems if you modify the file, then switch to a branch where that file has been changed. You may have to do some fancy "skip/unskip" operations to get around that.

    Long Term Fix

    In the long term, you probably want to separate your "local" changes into a second file. For example, if the file you want to change is a config file, create a "default" config file that you check into the repository. Then, allow a second "overrides" config file that is optional and put that file in your .gitignore.

    Then, in your application, read the default config file and then check if the overrides file exists. If it does, merge that data with the data from the default file.

    This example is for a config file, but you can use that technique for other kinds of overrides if needed.

提交回复
热议问题