Versions Compared

Key

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

Table of Contents

Steps to raise review in CMF gerrit(Ex:meta-cmf-raspberrypi)

Step 1:  Sign in the CMF gerrit (https://code.rdkcentral.com/r/q/status:open) and Go to below link,

...

Code Block
languagebash
themeDJango
titleCommit Format
<Project-Ticket-NO> : <summary of the ticket>
<blank line>
Reason for change: <add the reason why you are committing these changes>
Test Procedure: < Test steps>
Risks: <may be Low/Medium/High - based on your changes impact>

For Example,
REFPLTB-910915 : RPI-B Hostapd not starting on rdk-next with with change 50825Sometimes, WebUI login is failing in dunfell builds

Reason for change: Issue fixed
Test Procedure: HostapdTested processwith islocal runningbuild
Risks: Low

To exit the nano editor prompt . Need to follow the below steps,

  • ctrl + x
  • shift + y
  • click the enter button

Then , check the status of your commit

Code Block
languagebash
themeDJango
titleGit Push
$ git status
On branch rdk-next
Your branch is ahead of 'origin/rdk-next' by 1 commit.
  (use "git push" to publish your local commits)

nothing to commit, working tree clean

Step 10:  Push the code changes in CMF gerrit by using "git push " command.

Code Block
languagebash
themeDJango
titleGit Push
$ git push origin HEAD:refs/for/<branch-name>

For example,
git push origin HEAD:refs/for/rdk-next
Enumerating objects: 2511, done.
Counting objects: 100% (2511/2511), done.
Delta compression using up to 416 threads
Compressing objects: 100% (146/146), done.
Writing objects: 100% (146/146), 3.28640 KiBbytes | 1640.6400 MiBKiB/s, done.
Total 146 (delta 85), reused 0 (delta 0), pack-reused 0
remote: Resolving deltas: 100% (85/85)
remote: Processing changes: refs: 1, new: 1, done    
remote: commit 9cd2f9399b6d76: warning: subject >50 characters; use shorter first paragraph
remote: 
remote: SUCCESS
remote: 
remote: New Changes:
remote:   https://code.rdkcentral.com/r/adminc/repos/components/generic/rdk-oe/meta-cmf-raspberrypi/+/5101451157 REFPLTB-910915 : ... Sometimes, WebUI login is failing in dunfell builds
To https://code.rdkcentral.com/r/admin/repos/components/generic/rdk-oe/meta-cmf-raspberrypi
 * [new branch]      HEAD -> refs/for/rdk-next


Step 11:  Click the link from git push  success status(remote: https://code.rdkcentral.com/r/c/components/generic/rdk-oe/meta-cmf-raspberrypi/+/51157) to verify whether your code changes are successfully pushed or not in CMF gerrit.

Image Added




Steps to Modify the committed code changes