This commit is contained in:
k1574 2022-02-11 07:58:54 +05:00
commit d527bd9a54
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 $*
}
fn psagrep {
ps -A | grep $*
}