Versions Compared

Key

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

...

 It will shown like below, Once you we entered the repo name in filter search box.



Step2: Clone the Head repository from github

Code Block
languagebash
themeDJango
$ git clone <github_url>
  Example,
  git clone https://github.com/KaviyaKumaresan/meta-turris.git

$ cd meta-turris

Step3: One approach is creating a temporary/topic branch for pushing the code

Code Block
languagebash
themeDJango
$ git checkout -b <topic_branch_name>
  Example,
  git checkout -b demo

Step4: Fetch all the updates into the topic branch to be in tip of Base repository

...

languagebash
themeDJango

  check the components/generic/rdk-oe/meta-cmf-raspberrypi repo in Repository Name column.

It will shown like below,

Image Added


Step3: Once we clicked the meta-cmf-raspberrypi  repo , It will re-direct to  https://code.rdkcentral.com/r/admin/repos/components/generic/rdk-oe/meta-cmf-raspberrypi (like below screenshot).

In this below screenshot, we are able to  see 2 options under Download,

  1. Clone with commit-msg hook  - This is used for cloning the project and  committing the code changes in CMF gerrit.
  2. Clone - This is used only for cloning the project.

Image Added


So Committing the code changes, we need to select the first option in above screenshot.

Step4:

...



Step5: Make changes in local github repository and can verify with "git status" command

...