Git

Git Branch Concept and work on Git branch

Git Branch Concept and work on Git branch: In general branch means separate workstation. Like this concept of separate workstation, we also can create separate branches in  Git according to the steps of our flows   like development(dev), Testing(test) or Production(prod)  or based on what functionality we will add to our project. We also create branches  in Git for not […]

Git Branch Concept and work on Git branch Read More »

Important git  commands, Learn Git in 30 minutes

  Configuring Git setting global user name and email, these are identification who is working with the project(repository) $ git config –global user.name “My Name” $ git config –global user.email myEmail@example.com   Creating a new repository –git init command initializing git local repository in your computer: $  git init Checking the status –git status $ git status

Important git  commands, Learn Git in 30 minutes Read More »

Scroll to Top