Getting Started¶
Register with ONF
gerrit user account
github user account
Register with ONF¶
Begin by registering with OpenNetworkingFoundation, this will create a user account for you to access resources: gerrit, jenkins, wiki, etc.
Gerrit user account¶
Github user account¶
Git config settings¶
## Config required by git:
$ git config --global user.name 'Tux Penguin'
$ git config --global user.email 'tux@opennetworking.org'
## Config required by gerrit:
$ git config --global gitreview.username 'tux@opennetworking.org'
## Convenience:
$ git config --global alias.br branch
$ git config --global alias.ci commit
$ git config --global alias.co checkout
$ git config --global alias.st status
## Optional configs:
$ git config --global color.ui auto
$ git config --global pater.diff false