HelloTalib / gitpractice

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

gitpractice

Fork this repository

Clone your forked repository

git clone git@github.com:<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

About