Skip to content

Commit

Permalink
cy1
Browse files Browse the repository at this point in the history
  • Loading branch information
Adidi committed Apr 26, 2020
1 parent fac6348 commit 3c81dbd
Showing 1 changed file with 2 additions and 14 deletions.
16 changes: 2 additions & 14 deletions zsh/includes/aliases.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ alias desk='cd ~/Desktop' # Shortcut to code dir
alias cod='cd ~/code' # Shortcut to code dir
alias dotfiles='cd ~/.dotfiles' # Shortcut to CLI dotfiles dir
alias cy='cd ~/code/cycode'
alias cy1='code ~/code/cycode/cycode-js'

# List files/dirs
alias ls='ls -G'
Expand Down Expand Up @@ -63,14 +64,7 @@ alias mf='git merge --ff-only' # Fast-Forward merge
alias go='git checkout '
alias pull='git pull '
alias push='git push '
# Subtree Pull in
function spull() { git subtree pull --prefix=$1 $1 master }
# Subtree Push upstream
function spush() { git subtree push --prefix=$1 $1 master }
# Subtree Add new one
function sadd() { git subtree add --prefix=$1 $1 master }
# Undo a `git push`
alias undopush="git push -f origin HEAD~:master"

alias lg='git log -p'
alias lol='git log --graph --decorate --abbrev-commit --date=relative --pretty=format:"%C(yellow)%h%C(reset) %C(green)%ad%C(reset) %C(blue)%an%C(reset)%C(red)%d%C(reset) %s"'
alias lola='lol --all'
Expand Down Expand Up @@ -106,12 +100,6 @@ alias irssi='TERM=screen-256color irssi'
# More details: https://github.com/pickhardt/betty
alias betty="~/.dotfiles/betty/main.rb"

# Fire up simple server and open it's root page in the browser
alias server="open http://localhost:8000 && python -m SimpleHTTPServer"

# Send OS X notification
alias notify='terminal-notifier -message "Done" -activate com.googlecode.iterm2'

alias ccb="xsel -ib <"

# support unicode chars always
Expand Down

0 comments on commit 3c81dbd

Please sign in to comment.