Skip to content
ndaci edited this page Nov 23, 2016 · 11 revisions

Install instructions

# CMSSW area
scram p -n CMSSW_8020_SIMP CMSSW_8_0_20
cd CMSSW_8020_SIMP/src
cmsenv

# Create ssh agent for git commands
eval "$(ssh-agent -s)";ssh-add ~/.ssh/id_rsa

# Analysis package
mkdir SimpAnalysis
cd SimpAnalysis
git init
git remote add origin git@github.com:ndaci/SimpAnalysis.git
git fetch origin
git pull origin master

# Get your own branch if already existing
git checkout --track origin/YourName

# Create your own branch
git checkout -b YourName
git push origin YourName

Clone this wiki locally