defaultselected icon
light-blueselected icon
purple-spaceselected icon
matrixselected icon
vs codeselected icon
mid-nightselected icon

git init

Copied Successfully!

BASICS

Initialize the Git Repository

git init copy

View the Repository Status

git status copy

Stage a Snapshot

git add <file> copy

Commit the Snapshot

git commit copy

View a repository’s commit history

git log copy

Define the author name to be used in all repositories

git config --global user.name "<name>" copy

Define the author email to be used in all repositories.

git config --global user.email <email> copy

Basics

Search