Skip to content

Instantly share code, notes, and snippets.

@Shereef
Last active November 27, 2024 16:19
Show Gist options
  • Save Shereef/f2f6a04a4cb79c440c5763a714dda6c8 to your computer and use it in GitHub Desktop.
Save Shereef/f2f6a04a4cb79c440c5763a714dda6c8 to your computer and use it in GitHub Desktop.
My git config
[user]
name = <REPLACE_ME>
email = <REPLACE_ME>
signingKey = <REPLACE_ME>.pub
[gpg]
format = ssh
[core]
editor = \"%USERPROFILE%\\AppData\\Local\\Programs\\Microsoft VS Code\\bin\\code\" --wait
untrackedCache = true
fsmonitor = true
fscache = true
[push]
autoSetupRemote = true
[advice]
addIgnoredFile = true
[merge]
tool = tortoisemerge
[fetch]
prune = true
[alias]
force = push --force-with-lease
fpush = push --force-with-lease
cloneopen = "!f() { \
repo_name=$(basename \"$1\" .git); \
git clone \"$1\" \"/c/Dev/$repo_name\" && \
cd \"/c/Dev/$repo_name\" && \
code .; \
}; f"
all-delete = !git branch | grep -v \"^\\*\" | xargs git branch -D
[rerere]
enabled = true
[column]
ui = auto
[branch]
sort = -committerdate
[rebase]
updateRefs = true
autoSquash = true
autoStash = true
rebaseMerges = true
[maintenance]
repo = C:/Dev/DSICollection
auto = true
strategy = incremental
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment