chore: Remove unnecessary comments

This commit is contained in:
Donovan Glover 2023-07-18 07:19:49 -04:00
parent 74a7489230
commit a8c472a314
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -37,7 +37,7 @@
ga = "git add"; ga = "git add";
gaa = "git add --all"; gaa = "git add --all";
gap = "git add --patch"; gap = "git add --patch";
gb = "git branch"; # List all branches gb = "git branch";
gbd = "git branch --delete"; gbd = "git branch --delete";
gc = "git commit -m"; gc = "git commit -m";
gca = "git commit --amend"; gca = "git commit --amend";
@ -45,19 +45,19 @@
gco = "git checkout"; gco = "git checkout";
gcot = "git checkout --theirs"; gcot = "git checkout --theirs";
gcp = "git cherry-pick"; gcp = "git cherry-pick";
gd = "git diff"; # Show all file changes not staged yet gd = "git diff";
gds = "git diff --staged"; # Show changes staged but not committed gds = "git diff --staged";
gi = "git init"; gi = "git init";
gl = "git log --oneline --decorate --all --graph -n 10"; gl = "git log --oneline --decorate --all --graph -n 10";
gm = "git merge"; gm = "git merge";
gp = "git push"; # Push your commits to a remote server gp = "git push";
gr = "git reset HEAD~"; # Undo the last commit but keep changed files gr = "git reset HEAD~";
gR = "git restore"; gR = "git restore";
gRs = "git restore --staged"; gRs = "git restore --staged";
gra = "git remote add"; gra = "git remote add";
gre = "git remote --verbose"; # List all remotes gre = "git remote --verbose";
grh = "git reset HEAD"; grh = "git reset HEAD";
grr = "git reset --hard HEAD~"; # Remove the last commit and all changes with it grr = "git reset --hard HEAD~";
gs = "git status"; gs = "git status";
gst = "git stash"; gst = "git stash";
gstp = "git stash pop"; gstp = "git stash pop";
@ -89,7 +89,7 @@
st = "cd ~/nix-config && crystal spec tests/main.cr --progress --verbose --tag local"; st = "cd ~/nix-config && crystal spec tests/main.cr --progress --verbose --tag local";
tf = "treefmt"; tf = "treefmt";
c = "clear"; # Clear the terminal completely c = "clear";
e = "exit"; e = "exit";
l = "ls -l"; l = "ls -l";
n = "nvim"; n = "nvim";