In following, I documented about the raising PR and methods to follow while doing code modifications in local repo.
- < git checkout -b "New branchName">
- <git reset --hard upstream/(Branch-Name)>
-<git fetch upstream>
-<git pull upstream develop>
- <git add .> //If want to add high number of files to stage in git
- <git add "File relative path"> //If want to add one file
- <git restore --staged File-Path>
- <git commit -m "Message">
- <git push origin (Branch-Name)>