Skip to content

Latest commit

 

History

History
39 lines (34 loc) · 782 Bytes

README.md

File metadata and controls

39 lines (34 loc) · 782 Bytes

git

  • docs

  • git init

  • git status

  • git remote add origin https://..../name-repo.git

  • git remote -v

  • git status

  • git diff

  • git add .

  • git diff --cached

  • git status

  • git reset HEAD nameFile

  • git status

  • git add nameFile

  • git status

  • git commit -m "message"

  • git status

  • git pull

  • git push -u origin master

  • git push

  • git status

  • git checkout -b develop

  • git branch -a

  • git status

  • git checkout master

  • git merge develop

  • git status

  • git checkout fileName

  • git status

  • git reset --HARD (caution, dangerous!)

  • git status

gource (visualise history)