Skip to content

Latest commit

 

History

History
15 lines (14 loc) · 249 Bytes

workflow-basic.md

File metadata and controls

15 lines (14 loc) · 249 Bytes

Workflow Basic

$ git clone
$ git branch -a
$ git checkout -b topic-branch
$ // Hacking / rubah code
$ git add .
$ git commit -m "commit log"
$ git checkout master
$ git pull 
$ git merge topic-branch
$ //Resolve conflicts 
$ git push