-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
18 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/usr/bin/env bash | ||
|
||
git_reword $* | ||
git reword $* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/usr/bin/env bash | ||
|
||
git_get $1 | ||
git get $1 |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/usr/bin/env bash | ||
|
||
echodo git reset --quiet HEAD^ |
0
bin/git_unstage → bin/git-unstage
100755 → 100644
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/usr/bin/env bash | ||
|
||
git_can_autostash && ( git_rebase_i --exec="bash -cl '${*:2}'" "$1" --reschedule-failed-exec ) | ||
git_can_autostash && ( git_rebase_i --exec="${*:2}" "$1" --reschedule-failed-exec ) |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,12 @@ | ||
#!/usr/bin/env bash | ||
|
||
export COLOR_RED=$'\033[38;5;125m' | ||
export COLOR_GREEN=$'\033[38;5;48m' | ||
export COLOR_YELLOW=$'\033[38;5;227m' | ||
export COLOR_BLUE=$'\033[1;34m' | ||
export COLOR_AQUA=$'\033[1;36m' | ||
export COLOR_GREY=$'\033[0;90m' | ||
export COLOR_RESET=$'\033[0m' | ||
# Have less display colours | ||
# from: https://wiki.archlinux.org/index.php/Color_output_in_console#man | ||
export LESS_TERMCAP_mb=$COLOR_BLUE # begin bold | ||
export LESS_TERMCAP_md=$COLOR_GREEN # begin blink | ||
export LESS_TERMCAP_mb=$'\e[1;34m' # begin bold | ||
export LESS_TERMCAP_md=$'\e[1;32m' # begin blink | ||
export LESS_TERMCAP_so=$'\e[01;44;37m' # begin reverse video | ||
export LESS_TERMCAP_us=$COLOR_AQUA # begin underline | ||
export LESS_TERMCAP_me=$COLOR_RESET # reset bold/blink | ||
export LESS_TERMCAP_se=$COLOR_RESET # reset reverse video | ||
export LESS_TERMCAP_ue=$COLOR_RESET # reset underline | ||
export LESS_TERMCAP_us=$'\e[1;36m' # begin underline | ||
export LESS_TERMCAP_me=$'\e[m' # reset bold/blink | ||
export LESS_TERMCAP_se=$'\e[m' # reset reverse video | ||
export LESS_TERMCAP_ue=$'\e[m' # reset underline | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters