Versions Compared

Key

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

...

Make the code changes, and commit the changes


Cd

cd Lightning-CLI
git checkout -b <branch-name>

Note: give any name to your

branch which should be unique

choice example JIRAID, CommitId, etc.


Modify

then modify

your code.


$ git status
   Here You will see the files you have locally modified.
   
$ git add

filename

filenames
$ git commit -

a 


   Add the following to your commit message.
   
        JIRA-ID Write a small description
       

"<JIRA_ID> <COMMIT_DESCRIPTION>"

<One empty line>
        Reason for change:
        Test Procedure:
        Risks: 
        Signed-off-by:


$ git push -u

(It will prompt you the right command to use for submitting your code changes)


After submitting your changes, follow the next step to create a PR.


Step 4 : Create pull request for review the changes

...