mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2025-06-29 04:00:42 +00:00
Remove everything and restart blank
This commit removes all files currently present in the repo, to prepare for a start from a nothing. This is done due to my recent migration from X11 to Wayland, which has rendered most of these config files no longer releveant. I've currently been tracking my dotfiles in a separate repository, in hopes to get it to a state where it would be mergable here, but that turned out to be much more difficult than I anticipated, and I think it will be much easier to simply move over the history from this temporary repository I've been using onto this one. That however requires a start from a clean point, which this commit creates.
This commit is contained in:
parent
eadb37961b
commit
b912871070
206 changed files with 0 additions and 15683 deletions
|
@ -1,83 +0,0 @@
|
|||
[user]
|
||||
name = ItsDrike
|
||||
email = itsdrike@protonmail.com
|
||||
signingkey = B014E761034AF742
|
||||
[alias]
|
||||
quickclone = "clone --single-branch --depth=1"
|
||||
bareclone = "!sh -c 'git clone --bare \"$0\" \"$1\"/.bare; echo \"gitdir: ./.bare\" > \"$1/.git\"'"
|
||||
bareinit = "!sh -c 'git init --bare \"$0\"/.bare; echo \"gitdir: ./.bare\" > \"$0/.git\"'"
|
||||
cleanup = "!default_branch=$(git remote show origin | awk '/HEAD branch/ {print $NF}'); git remote prune origin && git checkout -q $default_branch && git for-each-ref refs/heads/ '--format=%(refname:short)' | while read branch; do mergeBase=$(git merge-base $default_branch $branch) && [[ $(git cherry $default_branch $(git commit-tree $(git rev-parse $branch^{tree}) -p $mergeBase -m _)) == '-'* ]] && git branch -D $branch; done"
|
||||
|
||||
m = "merge"
|
||||
p = "push"
|
||||
pl = "pull"
|
||||
f = "fetch"
|
||||
|
||||
s = "status --short --branch"
|
||||
ss = "status"
|
||||
|
||||
ch = "checkout"
|
||||
chb = "checkout -b"
|
||||
|
||||
undo = "reset --soft HEAD~"
|
||||
redo = "reset HEAD@{1}"
|
||||
unstage = "restore --staged"
|
||||
|
||||
c = "commit"
|
||||
ca = "commit --ammend"
|
||||
ci = "commit --interactive"
|
||||
cm = "commit --message"
|
||||
cv = "commit --verbose"
|
||||
|
||||
a = "add"
|
||||
aa = "add --all"
|
||||
ap = "add --patch"
|
||||
au = "add --update"
|
||||
|
||||
d = "diff"
|
||||
dc = "diff --cached"
|
||||
ds = "diff --staged"
|
||||
dw = "diff --word-diff"
|
||||
dcm = "!sh -c 'git diff $0~ $0'"
|
||||
|
||||
b = "branch"
|
||||
ba = "branch --all"
|
||||
bd = "branch --delete"
|
||||
bD = "branch --delete --force"
|
||||
bm = "branch --move"
|
||||
bM = "branch --move --force"
|
||||
|
||||
l = "log --oneline --decorate --all --graph"
|
||||
lp = "log --patch"
|
||||
lo = "log --pretty=oneline --abbrev-commit --graph"
|
||||
lg = "log --all --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --"
|
||||
|
||||
set-upstream = "!git branch --set-upstream-to=origin/`git symbolic-ref --short HEAD`"
|
||||
|
||||
stash-staged = "!sh -c 'git stash --keep-index; git stash push -m \"staged\" --keep-index; git stash pop stash@{1}'"
|
||||
|
||||
find-merge = "!sh -c 'commit=$0 && branch=${1:-HEAD} && (git rev-list $commit..$branch --ancestry-path | cat -n; git rev-list $commit..$branch --first-parent | cat -n) | sort -k2 -s | uniq -f1 -d | sort -n | tail -1 | cut -f2'"
|
||||
show-merge = "!sh -c 'merge=$(git find-merge $0 $1) && [ -n \"$merge\" ] && git show $merge'"
|
||||
|
||||
comitter-lines = "!git log --author=\"$1\" --pretty=tformat: --numstat | awk '{ add += $1; subs += $2; loc += $1 - $2 } END { printf \"added lines: %s, removed lines: %s, total lines: %s\\n\", add, subs, loc }' #"
|
||||
total-lines = "!git ls-files | xargs cat | wc -l"
|
||||
[credential]
|
||||
helper = store --file ~/.config/git/git-credentials
|
||||
[core]
|
||||
excludefile = ~/.config/git/global_gitignore
|
||||
editor = nvim
|
||||
pager = delta
|
||||
[interactive]
|
||||
diffFilter = delta --color-only
|
||||
[delta]
|
||||
line-numbers = true
|
||||
[merge]
|
||||
conflictstyle = diff3
|
||||
[diff]
|
||||
tool = vimdiff
|
||||
[fetch]
|
||||
prune = true
|
||||
[commit]
|
||||
gpgsign = true
|
||||
[init]
|
||||
defaultBranch = main
|
|
@ -1,25 +0,0 @@
|
|||
# vim: filetype=conf
|
||||
# Byte-compiled / optimized / DLL Files
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
|
||||
# Virtual Environments
|
||||
.venv/
|
||||
|
||||
# Editor project settings
|
||||
## VSCode
|
||||
.vscode/
|
||||
## PyCharm intellij
|
||||
.idea/
|
||||
## repl.it
|
||||
.replit
|
||||
## spyder
|
||||
.spyproject/
|
||||
.spyderproject/
|
||||
|
||||
# Custom attributes for folders on Mac OS
|
||||
.DS_Store
|
||||
|
||||
# Personal TODO files
|
||||
TODO
|
Loading…
Add table
Add a link
Reference in a new issue