git-exclude READMEThe extension's main function is ignoring update/add file in local git repository. This means to be clean repository from test or debug materials, or to be clean from specific user's settings. How to useThere are two ways to call this extension.
Features
The function is for ignoring files which are not managed by git. In order to achieve the function, this adds files as a line to.git/info/exclude. If .git/info/exclude is no existed, create a new one. The function must be a local repository for git.
The function is for ignoring files which are managed by git. Run "git update-index --skip-worktree" to ignore the file updates. This has also an opposing function, undo the ignoring of updates with "git update-index --no-skip-worktree". |