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
|
||||
alias gcue="\
|
||||
gcue() {
|
||||
git \
|
||||
config \
|
||||
user.email \
|
||||
"
|
||||
"user.email" \
|
||||
"${@}"
|
||||
}
|
||||
|
||||
# configure the user name
|
||||
gcun() {
|
||||
git \
|
||||
config \
|
||||
"user.name" \
|
||||
"${@}"
|
||||
}
|
||||
|
||||
# differences from last or between commits
|
||||
alias gd="\
|
||||
|
|
Loading…
Reference in a new issue