Rehan-05 / Github_Commad_For_Beginers

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Github_Commad_For_Beginers

Git commands :

For Downloading New Project from someOne else Repo

git Clone [https URL]

For Create Brach

git checkout -b [branch_name]

For Moving from one branch to another branch

Git checkout [branch name] _ // for changing braches

For fetching new changes from online branch

Git pull // for adding new changes from online Repo

For Checking current new changes

git status

for Commiting new changes on Remote branch

git add . ( . (dot) this is dot)

git commit -m "new changes"

git push origin [branch name]

About