Hasan's Post

Tutorial repository

View on GitHub
8 July 2021

Command line basics

by Hasan

1. Local project

Initializing the project

git init

Observe the status of the project

Ignoring certain files

Adding files

Remove files from staging area

Commiting

git commit -m "Explanatory message of the change"

2. Track existing remote project with git

Clone remote repository

git clone <url> <where to clone>

Inoformation about remote repository

Common Workflow

More advanced tutorial can be found here

tags: