gcue,gcun
This commit is contained in:
parent
3554f0b905
commit
c5185768b0
1 changed files with 14 additions and 12 deletions
|
@ -152,19 +152,21 @@ gcpc() {
|
||||||
"${@}"
|
"${@}"
|
||||||
}
|
}
|
||||||
|
|
||||||
# configure the user name
|
|
||||||
alias gcun="\
|
|
||||||
git \
|
|
||||||
config \
|
|
||||||
user.name \
|
|
||||||
"
|
|
||||||
|
|
||||||
# configure the user email
|
# configure the user email
|
||||||
alias gcue="\
|
gcue() {
|
||||||
git \
|
git \
|
||||||
config \
|
config \
|
||||||
user.email \
|
"user.email" \
|
||||||
"
|
"${@}"
|
||||||
|
}
|
||||||
|
|
||||||
|
# configure the user name
|
||||||
|
gcun() {
|
||||||
|
git \
|
||||||
|
config \
|
||||||
|
"user.name" \
|
||||||
|
"${@}"
|
||||||
|
}
|
||||||
|
|
||||||
# differences from last or between commits
|
# differences from last or between commits
|
||||||
alias gd="\
|
alias gd="\
|
||||||
|
|
Loading…
Reference in a new issue