Change style of some aliases in Git config

Signed-off-by: PandaCoderPL <git@pandacoderpl.anonaddy.me>
This commit is contained in:
PandaCoderPL 2021-11-23 22:12:37 +00:00
parent 6dce6e8749
commit d910cf25fe
Signed by: PandaCoderPL
GPG Key ID: 101E7BD8DF5C987B
3 changed files with 12 additions and 8 deletions

View File

@ -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)

View File

@ -1 +1 @@
1.7.6
1.7.7

View File

@ -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