gitconfig: added alias for stash; profile: added aliases for rm and cp command variations.

This commit is contained in:
k1574 2022-02-04 09:50:11 +05:00
parent fc7e084839
commit 3735af7b45
2 changed files with 20 additions and 0 deletions

View file

@ -18,5 +18,9 @@
pl = pull
fc = fetch
lg = log
stsh = stash
type = cat-file -t
dump = cat-file -p
[core]
autocrlf = input

16
profile
View file

@ -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