Versions Compared

Key

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

...

Step6: Add or modify the required files. Using "git status" command to verify the newly added or modified files(It will shown as RED color in below screenshot).

Code Block
languagebash
themeDJango
$ git status
On branch rdk-next
Your branch is up to date with 'origin/rdk-next'.

Changes not staged for commit:
  (use "git add <file>..." to update what will be committed)
  (use "git restore <file>..." to discard changes in working directory)
	modified:   system_defaults

no changes added to commit (use "git add" and/or "git commit -a")

Image Added



Step7: Add the Modified /New files to git by using "git add" command.Step7: Give a commit message

Code Block
languagebash
themeDJango
$ git commit -sv

...

languagebash
themeDJango
add <path_of_file> 

For example,
 git add recipes-ccsp/util/utopia/system_defaults


Step8:
 Using "git status" command to verify  the  code changes(whether it added successfully or not). It will shown GREEN color in below screenshot

...


Need to type in Username(github handle) and Password(Github Access Token). NOTE: User need to create new Github Access token

...