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
|
||||
alias gi="\
|
||||
git \
|
||||
init \
|
||||
"
|
||||
gi() {
|
||||
git \
|
||||
init \
|
||||
"${@}"
|
||||
}
|
||||
|
||||
# initialize a new bare repository
|
||||
alias gib="\
|
||||
git \
|
||||
init \
|
||||
--bare \
|
||||
"
|
||||
gib() {
|
||||
git \
|
||||
init \
|
||||
--bare \
|
||||
"${@}"
|
||||
}
|
||||
|
||||
# log commits history
|
||||
alias gl="\
|
||||
|
|
Loading…
Reference in a new issue