Skip to content

Basic Git Commands

benrady-aq edited this page Jun 21, 2024 · 1 revision

Creating a new branch

git checkout -b my-branch-name

Staging Changes

git add my_file.py

Committing changes

git commit -m "Your informative commit message here"

Pushing

git push -u origin my-branch-name
Clone this wiki locally