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/),
 | 
					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).
 | 
					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
 | 
					## [1.7.6] - 2021-11-22
 | 
				
			||||||
### Added
 | 
					### Added
 | 
				
			||||||
- Code to include secret config in [Bash Config](home/.bashrc)
 | 
					- Code to include secret config in [Bash Config](home/.bashrc)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -3,8 +3,8 @@
 | 
				
			||||||
	ae = a -e
 | 
						ae = a -e
 | 
				
			||||||
	ba = branch
 | 
						ba = branch
 | 
				
			||||||
	bach = "!f() { \
 | 
						bach = "!f() { \
 | 
				
			||||||
		git ba \"$1\" && \
 | 
							git ba \"$1\" \
 | 
				
			||||||
		git ch \"$1\"; \
 | 
							&& git ch \"$1\"; \
 | 
				
			||||||
		}; f"
 | 
							}; f"
 | 
				
			||||||
	bd = ba -d
 | 
						bd = ba -d
 | 
				
			||||||
	bfd = ba -D
 | 
						bfd = ba -D
 | 
				
			||||||
| 
						 | 
					@ -19,13 +19,13 @@
 | 
				
			||||||
		}; f"
 | 
							}; f"
 | 
				
			||||||
	cota = "!f() { \
 | 
						cota = "!f() { \
 | 
				
			||||||
		local version=\"v$(cat VERSION)\"; \
 | 
							local version=\"v$(cat VERSION)\"; \
 | 
				
			||||||
		git co \"$1\" && \
 | 
							git co \"$1\" \
 | 
				
			||||||
		git ta \"${version}\"; \
 | 
							&& git ta \"${version}\"; \
 | 
				
			||||||
		}; f"
 | 
							}; f"
 | 
				
			||||||
	fu = "!f() { \
 | 
						fu = "!f() { \
 | 
				
			||||||
		git fetch upstream && \
 | 
							git fetch upstream \
 | 
				
			||||||
		git ch master && \
 | 
							&& git ch master \
 | 
				
			||||||
		git rebase upstream/master; \
 | 
							&& git rebase upstream/master; \
 | 
				
			||||||
		}; f"
 | 
							}; f"
 | 
				
			||||||
	fup = !git fu && git pat
 | 
						fup = !git fu && git pat
 | 
				
			||||||
	p = push
 | 
						p = push
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue