From cece928ee03d8dfb9ef8b7e3d4ccf442c34226bd Mon Sep 17 00:00:00 2001 From: Sverre Rabbelier Date: Thu, 17 Jul 2008 20:29:46 +0200 Subject: [PATCH] Removed the redundant setupRepo.sh script The setupRepo.sh script is not used anymore and as such may be removed. To anyone interested in it it is available in the repo history. --- src/scripts/setupRepo.sh | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100755 src/scripts/setupRepo.sh diff --git a/src/scripts/setupRepo.sh b/src/scripts/setupRepo.sh deleted file mode 100755 index 655c17d..0000000 --- a/src/scripts/setupRepo.sh +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/bash - -repodir=repo$$ - -echo "Setting up repo in $repodir." - -# Set up the repo -mkdir $repodir -cd $repodir -git init - -git config user.email "sverre@rabbelier.nl" -git config user.name "Sverre Rabbelier" - -echo "Initial commit" >> content.txt -git add content.txt -git commit -m "Initial commit" - -# Create some commits -for ((i=2; i < 10;i++)) do - echo "Change $i." >> content.txt - git commit -a -m "Commit $i" -done - -# Create the last commit -echo "Last commit" >> content.txt -git commit -a -m "Last commit" - -# Done -echo "Done." - -- 2.11.4.GIT