git clone https://github.com/<user>/<repo_name>.git
cd <repo_name>
cd <repo_name>
git pull
git checkout -b newBranch
or git checkout existingBranch
[make the changes]
git add .
git commit -m "Commit message"
git push origin newBranch
[make PR]
git checkout main
git branch -D newBranch
git reset
git checkout .
git clean -fd