-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.sh
24 lines (21 loc) · 1023 Bytes
/
setup.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/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/HHAnalysis
# 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 git@github.com:${GITHUBUSERNAME}/${GITHUBUSERREMOTE}
# Add the remaining forks
git remote add OlivierBondu https://github.com/OlivierBondu/HHAnalysis.git
git remote add blinkseb https://github.com/blinkseb/HHAnalysis.git
git remote add delaere https://github.com/delaere/HHAnalysis.git
git remote add BrieucF https://github.com/BrieucF/HHAnalysis.git
git remote add swertz https://github.com/swertz/HHAnalysis.git
git remote add vidalm https://github.com/vidalm/HHAnalysis.git
git remote add mdelcourt https://github.com/mdelcourt/HHAnalysis.git