Compare commits

..

No commits in common. "378c74b37b96ef1f78c3063ff22aca7359f2fe0d" and "cf2beda57a11e1fe4d6b12275d48c28cd6971ff9" have entirely different histories.

1 changed files with 4 additions and 4 deletions

8
.zshrc
View File

@ -189,8 +189,7 @@ alias myip="curl ipinfo.io/ip"
alias changefont="figlet"
# Git
alias gmaster="git checkout master; git checkout main"
alias gmain="git checkout master; git checkout main"
alias gmaster="git checkout master"
alias gcommit="git commit --author='Marcin Woźniak <y0rune@aol.com>' -s"
alias gcommitw="git commit --author='Marcin Wozniak <marcin.wozniak@wundermanthompson.com>'"
alias gdel="git push origin --delete"
@ -199,10 +198,11 @@ alias gpush="git push"
alias gpull="git fetch -p -q; git pull; git submodule foreach git pull origin master -q; git submodule foreach git pull origin main -q; git submodule status"
alias gpu="git fetch -p -q; git pull; git submodule foreach git pull origin master -q; git submodule foreach git pull origin main -q; git submodule status"
alias gch="git checkout"
alias gstatus="git status -s"
alias gst="git status -s"
alias gdiff="git --no-pager diff"
alias gdiff="git diff | cat"
alias gnew="git checkout -b"
alias glog="git log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --branches"
alias gshow="git show --color --pretty=format:%b"
# Others
alias channel-check='sudo iwlist wlan0 scan | egrep -i "essid|frequency"'