Skip to content

Instantly share code, notes, and snippets.

@justforuse
Last active January 15, 2020 06:12
Show Gist options
  • Save justforuse/08a4be762bbfdb494d2dacc8ab55b536 to your computer and use it in GitHub Desktop.
Save justforuse/08a4be762bbfdb494d2dacc8ab55b536 to your computer and use it in GitHub Desktop.
Save your code in one command in case of fire

How to quick save your code and upload to remote server in case of fire

Git version

  • Code

fire.sh

branch_name=`git config user.name`
git add .
git commit -m 'fire is coming'
git checkout -b $branch_name
git push origin $branch_name
  • how to run
bash ./fire.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment