Skip to content

Latest commit

 

History

History
35 lines (15 loc) · 444 Bytes

commands.md

File metadata and controls

35 lines (15 loc) · 444 Bytes

Replace "<>" with your data

Cloning a repository :

Open the terminal, move to preferred directory and type

git clone <repository-link>

Make your changes to file

Checking the status :

git status

Adding files to git staging area :

* git add <file-name>

 OR

 * git add . (for all the files)

Commiting :

git commit -m "<some message>" 

Pushing :

git push origin <branch>