Last active
November 8, 2022 02:52
-
-
Save saikrn112/b9d16ad838fc240fe7370697039eb56c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias lt='ls -lrth' | |
alias gs='git status' | |
alias ga='git add' | |
alias gc='git commit' | |
alias gco='git checkout' | |
alias gcf='git clean -fd' | |
alias gb='git branch' | |
alias gcfo='git checkout . && git clean -df' | |
alias gd='git diff' | |
alias gg='git graph' | |
function pid() | |
{ | |
ps -fu $USER | grep $1 | grep -v grep | |
} | |
alias cv='cd ~/Personal/WPI/semester_1/computer_vision/' | |
alias init_ros2='source "/opt/ros/$ROS_DISTRO/setup.zsh" --' | |
alias rbe450HW1='source /root/vbm/HW1/install/setup.zsh' | |
alias rbe450HW3='source /root/vbm/HW3/week4/ros_ws/install/setup.zsh' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment