Skip to content

Commit

Permalink
First Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
erica committed Apr 14, 2009
0 parents commit f9b15b4
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
*.xcodeproj/*
!*.xcodeproj/project.pbxproj
/build
15 changes: 15 additions & 0 deletions do-git
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#! /bin/csh -f

if ($#argv != 1) then
echo "Usage $0 commit-message"
exit 1
endif

rm -rf C*/*/build
rm .DS_Store
rm C*/.DS_Store
rm C*/*/.DS_Store
rm -rf C*/*/*.xcodeproj/ericasadun.*
git add -A
git commit -m "$1"
git push

0 comments on commit f9b15b4

Please sign in to comment.