Skip to content

Instantly share code, notes, and snippets.

@JakeCooper
Created December 5, 2023 02:06
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JakeCooper/a62257bc77d78c64ea202fd40d52f2b2 to your computer and use it in GitHub Desktop.
Save JakeCooper/a62257bc77d78c64ea202fd40d52f2b2 to your computer and use it in GitHub Desktop.
FastCommit
function fd() {
git add -A
git commit -m $1
git push
}
function fds() {
git add -A
git commit -m "fastcommit"
git push
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment