Skip to content

Instantly share code, notes, and snippets.

@jstuckey
Created August 15, 2013 20:12
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jstuckey/6244374 to your computer and use it in GitHub Desktop.
Save jstuckey/6244374 to your computer and use it in GitHub Desktop.
Custom "git status" command to display additional information. Place in /user/bin and then type "git st" while in a git repo.
#!/bin/bash#!/bin/bash
echo
echo "User Name: $(git config user.name)"
echo "Email: $(git config user.email)"
echo
git status . -sb
echo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment