User Tools

Site Tools


sfc_reference_materials

SFC Reference Material / Presentation and Helpful Info Page

This page is intended to be a place that we can post up information, documents, links and other useful stuff with regards to the evolution of the SFC project within OPNFV. There are no real rules for posting, but rather if we see a item of information that is being passed around within the mailing lists, links that we are referring to over and over again, lets add it in here and then point people to this page for reference.

Hopefully cuts down on some of the clutter!

SFC Brahmaputra Information

Use Case Discussions

Other items In Use / Discussion in SFC project

Using GIT in the SFC project

More info available here:

# Getting started
sudo apt-get install git-review
# More git review details: https://www.mediawiki.org/wiki/Gerrit/git-review

# Sign the OPNFV Gerrit Agreement
https://gerrit.opnfv.org/gerrit/#/settings/agreements

git clone ssh://<username>@gerrit.opnfv.org:29418/sfc
git remote add gerrit ssh://<username>@gerrit.opnfv.org:29418/sfc.git
scp -p -P 29418 <username>@git.opendaylight.org:hooks/commit-msg .git/hooks/;chmod 755 .git/hooks/commit-msg;
# Normal steps to create and commit changes from a topic branch
git checkout -b topic/your_topic_branch
<... Modify the code ...>
git add <the modified files>
git commit --signoff
git review # This will provide the Gerrit link
# Rebasing a topic branch with master
git checkout master
git pull --rebase
git checkout topic/your_topic_branch
git rebase origin/master
# Add a patch-set to an existing commit
git checkout topic/your_topic_branch
<... Modify the code ..>
git add <the modified files>
git commit --amend
git review # This will provide the Gerrit link
sfc_reference_materials.txt · Last modified: 2016/02/03 17:19 by Brady Johnson