Day 2

 

Today’s videos is talking about Git and Git Hub It is very important thing that any developer should know before starting any thing in the programing life . So I did my research and found this video its about 60 minutes but is very important because he talk in this video about the basic of git and GitHub , difference between them , How to do your account on them  and when will you need to use git and when will need git hub . 

we talked about Git basics commands as [ git ]

• [ git config --global user.name “user_name”]

• [ git config --global user.email “user_test@mail.xyz”]

• [ git init “project_name”]

• [ git status ]

• [ git add ]

• [ git commit -m “commit_message” ]

• [ git log ]

• [ git push ]

• [ git checkout commit_hash_to_return]

second we talk about Git Branch Commands

• [ git branch ]

• [ git branch branch_name ]

• [ git checkout branch_name ]

• [git merge branch_name]

thats it this video was very useful acually.



Comments

Popular posts from this blog

day 26