Sort:  

Just make sure all workstations execute a script: on-fire-alarm.sh

#!/bin/bash

git stash --all
git pull --rebase
git checkout stash -- .
git stash drop
git commit -a -m "Fire alarm.  Clean this up later."
git push

Hah, now that's commitment!