stupidcomputer
15f2580cab
when you're running on a server and pushing changes, it's nice to have just one command that does that and nothing else. this is that command.
11 lines
101 B
Bash
Executable File
11 lines
101 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# make sure we're in dot_testing
|
|
cd ~/dot_testing
|
|
|
|
git pull
|
|
git stash
|
|
git rebase
|
|
|
|
rebuild
|