gi
This commit is contained in:
parent
db5874722a
commit
ad467c223c
1 changed files with 9 additions and 2 deletions
|
@ -189,10 +189,17 @@ gc \
|
||||||
"
|
"
|
||||||
|
|
||||||
# initialize a new repository
|
# initialize a new repository
|
||||||
alias gi='git init'
|
alias gi="\
|
||||||
|
git \
|
||||||
|
init \
|
||||||
|
"
|
||||||
|
|
||||||
# initialize a new bare repository
|
# initialize a new bare repository
|
||||||
alias gib='git init --bare'
|
alias gib="\
|
||||||
|
git \
|
||||||
|
init \
|
||||||
|
--bare \
|
||||||
|
"
|
||||||
|
|
||||||
# log commits history
|
# log commits history
|
||||||
alias gl='git log --all --graph \
|
alias gl='git log --all --graph \
|
||||||
|
|
Loading…
Reference in a new issue