forked from Discord-OTP-Forcer/Discord-OTP-Forcer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
11 lines (11 loc) · 770 Bytes
/
.gitconfig
File metadata and controls
11 lines (11 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
[alias]
# These commands are very useful. You can do `git ignore config/account.yml` so that git ignores the file from future commits, even if you had previously committed it
# and included it in .gitignore. If you want to add more config options,
# 1. anonymise/default-ize your config files to blank/the default values
# 2. make the changes to config/<yourfile>.yml
# 3. git commit -am "your message here" with the files you want
# 4. run `git ignore config/<yourfile>.yml` to ignore the file
# 5. fill in your personal config details if you want. they won't be committed to git (but still be careful!)
ignore = update-index --skip-worktree
unignore = update-index --no-skip-worktree
list-ignored = !git ls-files -v | grep "^S"