forked from extern/nix-config
Replace grep alias with git in .zsh_aliases
This commit is contained in:
parent
c070ccc15c
commit
e263df45aa
@ -38,8 +38,6 @@ alias l="ls -1" # Show each output from ls on a separate line
|
|||||||
alias lsa="ls -A" # Show hidden files (also known as dotfiles)
|
alias lsa="ls -A" # Show hidden files (also known as dotfiles)
|
||||||
alias type="type -a" # Easily see what the command you want to run points to
|
alias type="type -a" # Easily see what the command you want to run points to
|
||||||
|
|
||||||
alias g="grep -inr" # Look for a string in all the files of a directory and its subdirectories
|
|
||||||
|
|
||||||
####################################################################
|
####################################################################
|
||||||
# Volume aliases
|
# Volume aliases
|
||||||
####################################################################
|
####################################################################
|
||||||
@ -80,6 +78,7 @@ alias todo="ag TODO"
|
|||||||
# Git aliases
|
# Git aliases
|
||||||
####################################################################
|
####################################################################
|
||||||
|
|
||||||
|
alias g="git" # In case we ever need to type a full command
|
||||||
alias ga="git add" # Swiftly add new files to the repository
|
alias ga="git add" # Swiftly add new files to the repository
|
||||||
alias gap="git add --patch" # Commit a file one part at a time
|
alias gap="git add --patch" # Commit a file one part at a time
|
||||||
alias gc="git commit -m" # Easily create new commits
|
alias gc="git commit -m" # Easily create new commits
|
||||||
|
Loading…
Reference in New Issue
Block a user