Skip to content

Instantly share code, notes, and snippets.

@bchallenor
Last active December 11, 2015 20:28
Show Gist options
  • Save bchallenor/4655419 to your computer and use it in GitHub Desktop.
Save bchallenor/4655419 to your computer and use it in GitHub Desktop.
Git aliases to ignore changes to tracked files (similar to TortoiseSVN's "ignore-on-commit" changelist)
[alias]
skip = update-index --skip-worktree
noskip = update-index --no-skip-worktree
skipped = !git ls-files -v | grep "^S"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment