CMS SiteDB

How to update the siteconf in git
Official instructions

As this needs my ssh key, do updates on deathstar:
cd /tmp; rm -rf git; mkdir git; cd git;
git clone ssh://git@gitlab.cern.ch:7999/SITECONF/T2_UK_London_IC.git
cd T2_UK_London_IC
git status


Output is (one new file, one modfied file, one deleted file):
On branch master
Your branch is up-to-date with 'origin/master'.
Changes not staged for commit:
(use "git add/rm ..." to update what will be committed)
(use "git checkout -- ..." to discard changes in working directory)

modified: ftsmap-t2
deleted: ftsmap-t2.fts3.fts00

Untracked files:
(use "git add ..." to include in what will be committed)

ftsmap-t2.imperial

no changes added to commit (use "git add" and/or "git commit -a")

git add ftsmap-t2
git add ftsmap-t2.imperial
git rm ftsmap-t2.fts3.fts00
git commit -m "updated fts files to port 8446, removed obsolete files"
git push