Last active
April 24, 2026 05:33
-
-
Save MuhammadSulaiman001/48a4ce1c682f23621f8fe216db38ce22 to your computer and use it in GitHub Desktop.
Uploaded .gitconfig via Copilot CLI, see my aliases, diff tool and delta configs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [user] | |
| name = Muhammad Sulaiman | |
| email = muhammad.b.sulaiman001@gmail.com | |
| [diff] | |
| tool = pycharm | |
| [difftool] | |
| prompt = false | |
| [difftool "pycharm"] | |
| cmd = \"C:/Program Files/JetBrains/PyCharm 2025.3.2.1/bin/pycharm64.exe\" diff $LOCAL $REMOTE | |
| keepBackup = false | |
| [merge] | |
| tool = pycharm | |
| [mergetool] | |
| prompt = true | |
| [mergetool "pycharm"] | |
| cmd = \"C:/Program Files/JetBrains/PyCharm 2025.3.2.1/bin/pycharm64.exe\" \"$REMOTE\" \"$LOCAL\" \"$BASE\" \"$MERGED\" //m | |
| keepBackup = false | |
| trustExitCode = true | |
| [fetch] | |
| prune = true | |
| [core] | |
| autocrlf = true | |
| editor = notepad | |
| [difftool "sourcetree"] | |
| cmd = "'' " | |
| [mergetool "sourcetree"] | |
| cmd = "'' " | |
| trustExitCode = false | |
| keepBackup = false | |
| [safe] | |
| directory = D:/code/WPF-SimpleTrader | |
| directory = D:/equivator/code/BM-backend | |
| directory = C:/Users/muham/Desktop/nextjs-challenge | |
| directory = C:/Users/muham/Desktop/git-exercise | |
| directory = D:/likecard/code/skarla-risk-ai | |
| directory = D:/likecard/code/git-worktree-build-container-pre-push | |
| [alias] | |
| summary = ! git shortlog --summary --numbered --email --all --no-merges | |
| initall = !git init && git add . && git commit -m \"first commit\" && git status | |
| wip = !git add . && git commit -m \"wip\" && git status | |
| [filter "lfs"] | |
| required = true | |
| clean = git-lfs clean -- %f | |
| smudge = git-lfs smudge -- %f | |
| process = git-lfs filter-process | |
| [credential "https://git.assembla.com"] | |
| provider = generic | |
| [core] | |
| pager = delta | |
| [interactive] | |
| diffFilter = delta --color-only | |
| [delta] | |
| navigate = true | |
| dark = true # or `light = true`, or omit for auto-detection | |
| side-by-side = true | |
| [merge] | |
| conflictStyle = zdiff3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment