|
@@ -0,0 +1,9 @@
|
|
|
+alias insignia="clear; cat ~/.insignia; echo;"
|
|
|
+# git commands
|
|
|
+alias status="clear; git status"
|
|
|
+alias git_home="git checkout master"
|
|
|
+alias git_root="cd $(git rev-parse --show-toplevel)"
|
|
|
+alias fetch_pull="git fetch && git pull"
|
|
|
+# Checks that the terminal windows is 72 chars wide
|
|
|
+# Useful for VS Code terminals
|
|
|
+alias check_width="printf '=%.0s' {1..72}; echo"
|