Skip to content

Commit 095d4d3

Browse files
committed
Change style of some aliases in Git config
Signed-off-by: PandaCoderPL <git@pandacoderpl.anonaddy.me>
1 parent 6dce6e8 commit 095d4d3

3 files changed

Lines changed: 12 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [1.7.7] - 2021-11-23
8+
### Changed
9+
- Style of some aliases in [Git Config](home/.config/git/config)
10+
711
## [1.7.6] - 2021-11-22
812
### Added
913
- Code to include secret config in [Bash Config](home/.bashrc)

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.7.6
1+
1.7.7

home/.config/git/config

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
ae = a -e
44
ba = branch
55
bach = "!f() { \
6-
git ba \"$1\" && \
7-
git ch \"$1\"; \
6+
git ba \"$1\" \
7+
&& git ch \"$1\"; \
88
}; f"
99
bd = ba -d
1010
bfd = ba -D
@@ -19,13 +19,13 @@
1919
}; f"
2020
cota = "!f() { \
2121
local version=\"v$(cat VERSION)\"; \
22-
git co \"$1\" && \
23-
git ta \"${version}\"; \
22+
git co \"$1\" \
23+
&& git ta \"${version}\"; \
2424
}; f"
2525
fu = "!f() { \
26-
git fetch upstream && \
27-
git ch master && \
28-
git rebase upstream/master; \
26+
git fetch upstream \
27+
&& git ch master \
28+
&& git rebase upstream/master; \
2929
}; f"
3030
fup = !git fu && git pat
3131
p = push

0 commit comments

Comments
 (0)