Skip to content

Commit

Permalink
Updated Build Tools
Browse files Browse the repository at this point in the history
  • Loading branch information
BennyQBD committed May 31, 2014
1 parent 1dd788b commit f60ae4b
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 10 deletions.
6 changes: 6 additions & 0 deletions Unix-GitPull.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#Clean up any files that aren't part of the repository
#because they will need to be regenerated after a pull.
./Unix-Clean.sh

#Pull any commits from the remote branch
git pull origin master
10 changes: 10 additions & 0 deletions Unix-GitPush.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#Move the res directory back to it's inital position
mv ./build/res/ ./

#Add everything to a new commit and push it to github
git add -A
git commit
git push origin master

#Move the res directory back to the working "build" directory
mv ./res/ ./build/
10 changes: 0 additions & 10 deletions _PushToGithub.sh

This file was deleted.

4 changes: 4 additions & 0 deletions build/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Ignore everything in this directory
*
# Except this file
!.gitignore
Empty file removed build/.gitkeep
Empty file.

0 comments on commit f60ae4b

Please sign in to comment.