Skip to content

Instantly share code, notes, and snippets.

@tarciozemel
Forked from sloanlance/git-temporary-ignore.md
Last active May 24, 2022 13:29
Show Gist options
  • Save tarciozemel/575fec315cdd806fa6c88fa8168feb15 to your computer and use it in GitHub Desktop.
Save tarciozemel/575fec315cdd806fa6c88fa8168feb15 to your computer and use it in GitHub Desktop.
git: Ignorar temporariamente arquivos novos ou alterados sem alterar .gitignore

There are times notifications aren't wanted about either a changed repo file or a new file that needs to be added to the repo. However, adding the name of the file to .gitignore might not be a good option, either. For example, locally-generated files that other users aren't likely to generate (e.g., files created by an editor) or files of experimental test code might not be appropriate to appear in a .gitignore file.

In those cases, use one of these solutions:

  1. If the file is a changed repo file

    Use the command:

    git update-index --assume-unchanged "$FILE"

    To undo this, use the command:

    git update-index --no-assume-unchanged "$FILE"

    The update-index command doesn't work with new files that haven't been added to the repo yet, though.

  2. If the file is new and not added to the repo

    Add its filename to the repo's exclude file:

    echo "$FILE" >> .git/info/exclude

    This also works for changed repo files, but there isn't a specific undo command for it. The exclude file would need to be edited and the filename deleted from it. Or other commands could approximate it:

    ex -s -c"g/^${FILE}\$/d" -cwq .git/info/exclude

    Note that this overwrites the existing exclude file and if the filename specified contains special characters that could affect the regular expression, the results are unpredictable.

    This usage of the exclude file is recommended by the page "Ignoring files" on GitHub Help.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment