Skip to content

Instantly share code, notes, and snippets.

@Kostassoid
Created May 9, 2020 02:00
Show Gist options
  • Save Kostassoid/8d4f81167ccc1806ee4f1b8d3f60309e to your computer and use it in GitHub Desktop.
Save Kostassoid/8d4f81167ccc1806ee4f1b8d3f60309e to your computer and use it in GitHub Desktop.
Some Powershell aliases inspired by Oh-My-Zsh Git plugin
function g() {
git $args[0]
}
function gc() {
git commit --verbose --message $args[0]
}
function gco() {
git checkout
}
function gst() {
git status
}
function gd() {
git diff
}
function gaa() {
git add --all
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment