Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 620 Bytes

README.md

File metadata and controls

21 lines (16 loc) · 620 Bytes

GITCheatSheets

GIT Cheat Sheets

    create a new repository
    --------------------------------------
    git init
    git add README.md
    git commit -m "first commit"
    git remote add origin https://github.com/johnyshaik82/GITCheatSheets.git
    git push -u origin master

    push an existing repository
    --------------------------------------
    git remote add origin https://github.com/johnyshaik82/GITCheatSheets.git
    git push -u origin master

Few cool tips are here: https://gist.github.com/hofmannsven/6814451 https://chris.beams.io/posts/git-commit/