Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 277 Bytes

File metadata and controls

14 lines (10 loc) · 277 Bytes

How to Push to GitHub (Template)

What is push?

  • Push sends your commits to GitHub

Steps

  • First push for a new branch:
    • git push -u origin <branch-name>

Example:

  • git push -u origin my-first-branch

Next