User Tools

Site Tools


parser:howto

This is an old revision of the document!


HowTo Start Development in Parser

Add Your Credentials:

First of all you need to authorize yourself with opnfv gerrit.

Go to https://gerrit.opnfv.org/gerrit/#/admin/projects/parser , for first time set up there will prompt a setup page. What you need to do is copy&paste your ssh info to fill into the blank, and then fill out the committer agreement at the bottom, then you are good to go :)

Basic Git Ops For Set Up:

Nest you will need to set up your basic env locally in order to work, I will present my procedure as an example. For seasoned devs, this should be very basic and simple.

zhipengh@zhipeng-pc:~/Workspace$ git clone ssh:zhipengh@gerrit.opnfv.org:29418/parser && scp -p -P 29418 zhipengh@gerrit.opnfv.org:hooks/commit-msg parser/.git/hooks/ zhipengh@zhipeng-pc:~/Workspace$ cd parser/ zhipengh@zhipeng-pc:~/Workspace/parser$ mkdir yang2tosca/ zhipengh@zhipeng-pc:~/Workspace/parser$ vim yang2tosca/README.md zhipengh@zhipeng-pc:~/Workspace/parser$ mkdir tosca2heat/ zhipengh@zhipeng-pc:~/Workspace/parser$ vim tosca2heat/README.md zhipengh@zhipeng-pc:~/Workspace/parser$ mkdir docs/ zhipengh@zhipeng-pc:~/Workspace/parser$ vim docs/intro.md zhipengh@zhipeng-pc:~/Workspace/parser$ git add yang2tosca/README.md zhipengh@zhipeng-pc:~/Workspace/parser$ git add tosca2heat/README.md zhipengh@zhipeng-pc:~/Workspace/parser$ git add docs/intro.md zhipengh@zhipeng-pc:~/Workspace/parser$ git commit -m "Create First Several Files and Folders" [master 02d943c] Create First Several Files and Folders 3 files changed, 3 insertions(+) create mode 100644 docs/intro.md create mode 100644 tosca2heat/README.md create mode 100644 yang2tosca/README.md

parser/howto.1427013029.txt.gz · Last modified: 2015/03/22 08:30 by Zhipeng (Howard) Huang