Git
Posted on 01.10.2017
- Visual Git Cheatsheet
- Reference Git Documentation
- Create repository in folder
git init
- Clone existing repository
git clone LINK
- Add any new files
git add .
- Commit changes
git commit -m 'Message'
- Push changes
git push
- See log
git log
- See changes
git status
orgit diff