Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Clone the repo that your contribution is for:  git clone http://gerrit.o-ran-sc.org/r/<REPO_PATH>
  2. Change dir into the repo;

  3. Sign for your code change (comment-thoralf_"review -s" does not do any signing. this step seems unncessary // maybe it was supposed to be "git commit -s") :  git review -s;   This is where Gerrit plugin using ssh to verify with gerrit.o-ran-sc.org that your email is already registered with the server;
  4. Follow the usual git code change work flow: make code change, git add, and git commit;
    1. The message provided at git commit should be used as commit summary, --keep it short;
  5. Update commit message with git commit -s --amend;  This is where more detailed commit messages are added, and a signed-off by line inserted to commit message;
  6. Submit code change with git review;

...