Automatic process update
- INIT
git init
- CLONE
git clone https://github.com/abprymenko/AutoProcess.git
... perform some manipulations with a code ...
- STATUS
git status --short
- ADD
git add .
- COMMIT
git commit -a -m "Your_commit_message"
- BRANCH
git branch -M master
- REMOTE
git remote add origin https://github.com/abprymenko/AutoProcess.git
- PUSH
git push -u origin master