-
Notifications
You must be signed in to change notification settings - Fork 4
/
first_setup.sh
23 lines (20 loc) · 964 Bytes
/
first_setup.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash
# Look out for conflicts between git and cmssw
if [ ! -f ${CMSSW_BASE}/src/.git/HEAD ];
then
echo "You seem to be on Ingrid and CMSSW area appears not to be set up correctly. Check README carefully."
echo
return 1
fi
cd ${CMSSW_BASE}/src/cp3_llbb/ZAAnalysis
# configure the origin repository
GITHUBUSERNAME=`git config user.github`
GITHUBUSERREMOTE=`git remote -v | grep upstream | awk '{print $2}' | head -n 1 | cut -d / -f 2`
git remote add origin [email protected]:${GITHUBUSERNAME}/${GITHUBUSERREMOTE}
# Add the remaining forks
git remote add OlivierBondu https://github.com/OlivierBondu/ZAAnalysis.git
git remote add delaere https://github.com/delaere/ZAAnalysis.git
git remote add swertz https://github.com/swertz/ZAAnalysis.git
git remote add vidalm https://github.com/vidalm/ZAAnalysis.git
git remote add alesaggio https://github.com/alesaggio/ZAAnalysis.git
git remote add pieterdavid https://github.com/pieterdavid/ZAAnalysis.git