Skip to content

Instantly share code, notes, and snippets.

@Gisleburt
Last active December 17, 2015 07:19
Show Gist options
  • Select an option

  • Save Gisleburt/5572235 to your computer and use it in GitHub Desktop.

Select an option

Save Gisleburt/5572235 to your computer and use it in GitHub Desktop.
Keeping track of useful alias'
!#/bin/bash
alias ll='ls -alph'
alias tarzip='tar -czfv'
alias untarzip='tar -xzfv'
sshagent () { eval `ssh-agent -s` && ssh-add; };
alias git-commit='git commit -S -m'
alias git-log='git log --show-signature'
alias git-tag='git tag -s'
alias git-show='git show --show-signature'
# Bespoke
# alias mnt="sudo mount -o 'vers=3,nolock,udp' 10.0.2.2:/www /www"
PS1="\[\e[38;5;46m\]\u@\h\[\e[00m\]:\[\e[38;5;33m\]\w\[\e[00m\]\$ "
@Gisleburt

Copy link
Copy Markdown
Author

Added git aliases for use with GPG

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment