Skip to content

Instantly share code, notes, and snippets.

@alycda
Last active December 26, 2025 23:04
Show Gist options
  • Select an option

  • Save alycda/27e511ca5806a9cd7f2e823d6e306d98 to your computer and use it in GitHub Desktop.

Select an option

Save alycda/27e511ca5806a9cd7f2e823d6e306d98 to your computer and use it in GitHub Desktop.
Git Config
[core]
editor = code --wait
ignorecase = true
[core]
excludesfile = ~/.gitignore_global
[pull]
rebase = true
[alias]
br = branch
branches = branch -a
co = checkout
wip = commit -m "WIP"
ca = commit --amend --no-edit
cp = cherry-pick
st = status
[log]
date = relative
[push]
autoSetupRemote = true
# bare worktree
[remote]
origin.fetch = "+refs/heads/*:refs/remotes/origin/*"