This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
git status -s | |
read -p "Press any key to show diff" -n1 -s; echo | |
git --no-pager diff | |
read -p "Press any key to stage all files" -n1 -s; echo | |
git add . | |
git status -s |