mirror of
https://github.com/zhigang1992/iOS-6-Advanced-Cookbook.git
synced 2026-01-12 09:04:30 +08:00
15 lines
203 B
Tcsh
Executable File
15 lines
203 B
Tcsh
Executable File
#! /bin/csh -f
|
|
|
|
if ($#argv != 1) then
|
|
echo "Usage $0 commit-message"
|
|
exit 1
|
|
endif
|
|
|
|
rm -rf build
|
|
rm .DS_Store
|
|
rm */.DS_Store
|
|
rm -rf *.xcodeproj/ericasadun.*
|
|
git add -A
|
|
git commit -m "$1"
|
|
git push
|