diff --git a/CHANGELOG.md b/CHANGELOG.md index bef984a..26f621a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.7.7] - 2021-11-23 +### Changed +- Style of some aliases in [Git Config](home/.config/git/config) + ## [1.7.6] - 2021-11-22 ### Added - Code to include secret config in [Bash Config](home/.bashrc) diff --git a/VERSION b/VERSION index de28578..91c74a5 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.7.6 +1.7.7 diff --git a/home/.config/git/config b/home/.config/git/config index 4526c2a..93d8cf9 100644 --- a/home/.config/git/config +++ b/home/.config/git/config @@ -3,8 +3,8 @@ ae = a -e ba = branch bach = "!f() { \ - git ba \"$1\" && \ - git ch \"$1\"; \ + git ba \"$1\" \ + && git ch \"$1\"; \ }; f" bd = ba -d bfd = ba -D @@ -19,13 +19,13 @@ }; f" cota = "!f() { \ local version=\"v$(cat VERSION)\"; \ - git co \"$1\" && \ - git ta \"${version}\"; \ + git co \"$1\" \ + && git ta \"${version}\"; \ }; f" fu = "!f() { \ - git fetch upstream && \ - git ch master && \ - git rebase upstream/master; \ + git fetch upstream \ + && git ch master \ + && git rebase upstream/master; \ }; f" fup = !git fu && git pat p = push