gi,gib
This commit is contained in:
parent
beb479ba7c
commit
d8de9913ce
1 changed files with 11 additions and 9 deletions
|
@ -238,17 +238,19 @@ ggc() {
|
||||||
}
|
}
|
||||||
|
|
||||||
# initialize a new repository
|
# initialize a new repository
|
||||||
alias gi="\
|
gi() {
|
||||||
git \
|
git \
|
||||||
init \
|
init \
|
||||||
"
|
"${@}"
|
||||||
|
}
|
||||||
|
|
||||||
# initialize a new bare repository
|
# initialize a new bare repository
|
||||||
alias gib="\
|
gib() {
|
||||||
git \
|
git \
|
||||||
init \
|
init \
|
||||||
--bare \
|
--bare \
|
||||||
"
|
"${@}"
|
||||||
|
}
|
||||||
|
|
||||||
# log commits history
|
# log commits history
|
||||||
alias gl="\
|
alias gl="\
|
||||||
|
|
Loading…
Reference in a new issue