From 59cb63ae655eef359944e9097264e88b9b4a4f45 Mon Sep 17 00:00:00 2001 From: greg-compass Date: Tue, 1 Nov 2022 14:50:38 -0500 Subject: [PATCH] Add more utility aliases --- home/git.nix | 1 + home/xonsh.nix | 2 ++ 2 files changed, 3 insertions(+) diff --git a/home/git.nix b/home/git.nix index 628053f..dce6b54 100644 --- a/home/git.nix +++ b/home/git.nix @@ -9,6 +9,7 @@ st = "status"; ci = "commit"; co = "checkout"; + ups = "push -u origin HEAD"; }; ignores = [ ".*.swp" ".*.swo" ".*.swn" # vim diff --git a/home/xonsh.nix b/home/xonsh.nix index de98877..794f5fa 100644 --- a/home/xonsh.nix +++ b/home/xonsh.nix @@ -29,8 +29,10 @@ aliases = { ac = "vox activate"; cblack = "compass workspace run src/python3/uc/tools:run_black --"; + cbuild = "compass workspace build"; cci = "./scripts/circleci-checks.py"; crun = "compass workspace run"; + ctest = "compass workspace test"; cylint = "./scripts/run_yaml_lint.py"; d = "vox deactivate"; devroles = "cd ~/src/ansible_collections/devroles";