summaryrefslogtreecommitdiff
path: root/keyboards/kc60
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2020-12-24 13:36:44 +1100
committerGitHub <noreply@github.com>2020-12-24 02:36:44 +0000
commit6a292e11d3faddbdbed8175a97aaed00a3469afa (patch)
treefab7c779727fae970a331068e947db9bf028bf07 /keyboards/kc60
parent3e3f93c971aec877efbee71da76b48f3f006e97c (diff)
`qmk fileformat`: only print complaints, and fix some of them (#11278)
Diffstat (limited to 'keyboards/kc60')
-rw-r--r--keyboards/kc60/keymaps/noroadsleft/readme_git.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/kc60/keymaps/noroadsleft/readme_git.md b/keyboards/kc60/keymaps/noroadsleft/readme_git.md
index 432f1abc7e..a8564703fc 100644
--- a/keyboards/kc60/keymaps/noroadsleft/readme_git.md
+++ b/keyboards/kc60/keymaps/noroadsleft/readme_git.md
@@ -46,11 +46,11 @@
branch-name = "!git rev-parse --abbrev-ref HEAD"
bn = "!git branch-name" # short-form of the above
# List branches by the date of their last commit, newest to oldest
- bbd = "for-each-ref --count=30 --sort=-committerdate refs/heads/ --format='%(objectname) %(objecttype) %(refname:short) (%(authordate))'"
+ bbd = "for-each-ref --count=30 --sort=-committerdate refs/heads/ --format='\e[33m%(objectname)\e[0m %(objecttype) \e[32m%(refname:short)\e[0m (%(authordate))'"
# Compare commit counts between current branch and QMK master
# e.g. `git cc dev_branch upstream/master` returns how many commits are on `dev_branch` and not on `upstream/master`, and vice versa.
- cc = "!f() { git fetch upstream; echo \"$(git branch-name) vs. $2\"; git rev-list --left-right --count $1...$2; }; f"
+ cc = "!f() { git fetch upstream; echo \"\e[0;32m$(git branch-name)\e[0m vs. \e[0;31m$2\e[0m\"; git rev-list --left-right --count $1...$2; }; f"
# Push to origin repo
po = "push origin $(git branch-name)"