From 13b35b319c5b1c769176bbe2a42e21cc8811c7d7 Mon Sep 17 00:00:00 2001 From: Dhanya Maliakal Date: Thu, 11 Jun 2015 12:34:15 +0200 Subject: [PATCH] removed all the scripts for just gitall --- branchall.sh | 12 ------------ checkout.sh | 3 +++ diffall.sh | 12 ------------ fetch.sh | 8 -------- pull.sh | 8 -------- statusall.sh | 18 ------------------ 6 files changed, 3 insertions(+), 58 deletions(-) delete mode 100644 branchall.sh delete mode 100644 diffall.sh delete mode 100644 fetch.sh delete mode 100644 pull.sh delete mode 100644 statusall.sh diff --git a/branchall.sh b/branchall.sh deleted file mode 100644 index fce1819f1..000000000 --- a/branchall.sh +++ /dev/null @@ -1,12 +0,0 @@ -git branch; -cd slsDetectorSoftware; -git branch; -cd ../slsReceiverSoftware; -git branch; -cd ../slsDetectorGui; -git branch; -cd ../slsDetectorCalibration; -git branch; -cd ../slsImageReconstruction; -git branch; -cd .. diff --git a/checkout.sh b/checkout.sh index 88fcf5443..23993df80 100644 --- a/checkout.sh +++ b/checkout.sh @@ -9,3 +9,6 @@ git clone $1@gitorious.psi.ch:sls_det_software/sls_detector_gui.git slsDetectorG git clone $1@gitorious.psi.ch:sls_det_software/sls_receiver_software.git slsReceiverSoftware git clone $1@gitorious.psi.ch:sls_det_software/sls_detector_calibration.git slsDetectorCalibration + +git clone $1@gitorious.psi.ch:sls_det_software/sls_image_reconstruction.git slsImageReconstruction + diff --git a/diffall.sh b/diffall.sh deleted file mode 100644 index ddc8d4a86..000000000 --- a/diffall.sh +++ /dev/null @@ -1,12 +0,0 @@ -git diff; -cd slsDetectorSoftware; -git diff; -cd ../slsReceiverSoftware; -git diff; -cd ../slsDetectorGui; -git diff; -cd ../slsDetectorCalibration; -git diff; -cd ../slsImageReconstruction; -git diff; -cd .. diff --git a/fetch.sh b/fetch.sh deleted file mode 100644 index 37ea97e22..000000000 --- a/fetch.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/bash -git fetch -for i in */; do - cd $i - git fetch - cd .. -done - diff --git a/pull.sh b/pull.sh deleted file mode 100644 index 1976c05d5..000000000 --- a/pull.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/bash -git pull -for i in */; do - cd $i - git pull - cd .. -done - diff --git a/statusall.sh b/statusall.sh deleted file mode 100644 index 394d85ec3..000000000 --- a/statusall.sh +++ /dev/null @@ -1,18 +0,0 @@ -echo "***slsDetectorsPackage"; -git status; -echo "***slsDetectorSoftware"; -cd slsDetectorSoftware; -git status; -echo "***slsReceiverSoftware"; -cd ../slsReceiverSoftware; -git status; -echo "***slsDetectorGui"; -cd ../slsDetectorGui; -git status; -echo "***slsDetectorCalibration"; -cd ../slsDetectorCalibration; -git status; -echo "***slsImageReconstruction"; -cd ../slsImageReconstruction; -git status; -cd ..