Change style of some aliases in Git config
Signed-off-by: PandaCoderPL <git@pandacoderpl.anonaddy.me>
This commit is contained in:
parent
6dce6e8749
commit
d910cf25fe
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue