Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 698 Bytes

File metadata and controls

15 lines (12 loc) · 698 Bytes

GIT Command line Commands

Below mentioned commands are used frequently in our environment.

Commands description
git clone copy a remote repository into local machine
git pull get the changes made in remote repository by the team members
git status shows the status of changes as untracked, modified, or staged.
git add staged/add the changes
git checkout -b  to take local branch from remote branch
git branch -r   list the branches
git log get the details about commits that made on branch/repository

<- Back to Testing Applications