initial doc

This commit is contained in:
Chandra Mohan Jha 2019-12-31 13:18:08 +05:30
parent 8a670a3530
commit 06ba0e9e09
1 changed files with 14 additions and 0 deletions

14
git.md Normal file
View File

@ -0,0 +1,14 @@
# Git
` git init ` Initialize git
` git status ` Get status
` git add <file-name> ` add file to version control
` git add . ` add all files to version control
` git commit [-m "commit message"] ` commit the changes to version control
` git log ` get the log related to git i.e. version committed
` git branch ` get the branches present locally
` git checkout <branch-name> ` checkout the branch
` git checkout -b <branch-name> ` create a new branch and check it out
` git merge <source-branch> ` merges the source branch into currently checked out branch
` git remote add origin <repo-uri> ` add remote repo uri
` git remote -v ` lists the remote URIs