From 3735af7b45e3758c7401e3507106e1824d0ff4b6 Mon Sep 17 00:00:00 2001 From: k1574 Date: Fri, 4 Feb 2022 09:50:11 +0500 Subject: [PATCH] gitconfig: added alias for stash; profile: added aliases for rm and cp command variations. --- dot/file/gitconfig | 4 ++++ profile | 16 ++++++++++++++++ 2 files changed, 20 insertions(+) diff --git a/dot/file/gitconfig b/dot/file/gitconfig index 4dec70d..03e1201 100644 --- a/dot/file/gitconfig +++ b/dot/file/gitconfig @@ -18,5 +18,9 @@ pl = pull fc = fetch lg = log + stsh = stash type = cat-file -t dump = cat-file -p +[core] + autocrlf = input + diff --git a/profile b/profile index 3c6a4ba..dd6f555 100644 --- a/profile +++ b/profile @@ -169,6 +169,10 @@ fn q { exit } +fn g { + 9grep $* +} + fn uprofile { . $profile } @@ -192,6 +196,18 @@ fn m { } } +fn rmr { + rm -r $* +} + +fn rmf { + rm -r -f $* +} + +fn cpr { + cp -r $* +} + # Setting enviroment. if(test -r $setenv){ . $setenv