gcam,gcem
This commit is contained in:
parent
7e788e5940
commit
cd4d7d3fcb
1 changed files with 19 additions and 19 deletions
|
@ -73,6 +73,25 @@ gbs() {
|
||||||
"${@}"
|
"${@}"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# redo the last commit with a different message
|
||||||
|
gcam() {
|
||||||
|
git \
|
||||||
|
commit \
|
||||||
|
--amend \
|
||||||
|
--message \
|
||||||
|
"${@}"
|
||||||
|
}
|
||||||
|
|
||||||
|
# make a root commit
|
||||||
|
gcem() {
|
||||||
|
git \
|
||||||
|
commit \
|
||||||
|
--allow-empty \
|
||||||
|
--allow-empty-message \
|
||||||
|
--message \
|
||||||
|
"${@}"
|
||||||
|
}
|
||||||
|
|
||||||
# clean untracked files
|
# clean untracked files
|
||||||
gcf() {
|
gcf() {
|
||||||
git \
|
git \
|
||||||
|
@ -90,25 +109,6 @@ gcm() {
|
||||||
"${@}"
|
"${@}"
|
||||||
}
|
}
|
||||||
|
|
||||||
# redo the last commit with a different message
|
|
||||||
gcma() {
|
|
||||||
git \
|
|
||||||
commit \
|
|
||||||
--amend \
|
|
||||||
--message \
|
|
||||||
"${@}"
|
|
||||||
}
|
|
||||||
|
|
||||||
# make a root commit
|
|
||||||
gcme() {
|
|
||||||
git \
|
|
||||||
commit \
|
|
||||||
--allow-empty \
|
|
||||||
--allow-empty-message \
|
|
||||||
--message \
|
|
||||||
"${@}"
|
|
||||||
}
|
|
||||||
|
|
||||||
# switch to a branch or checkout file(s) from a commit
|
# switch to a branch or checkout file(s) from a commit
|
||||||
gco() {
|
gco() {
|
||||||
git \
|
git \
|
||||||
|
|
Loading…
Reference in a new issue