Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 533 Bytes

README.md

File metadata and controls

34 lines (27 loc) · 533 Bytes

gitpractice

Fork this repository

Clone your forked repository

git clone [email protected]:<username>/gitpractice.git

Create a new branch

git checkout -b <branch-name>

example: $ git checkout -b feat-honululu-widget

Make changes to the code

git add .
git commit -m "feat: add honululu widget"

Push your changes to your forked repository

git push origin <branch-name>

Create a pull request

git request-pull <feature-branch> <upstream> main