Programming, Projects, Uncategorized

Git workflow.

1) create a branch. $ git checkout -b feature/newFeature 2) add new files and commit. $ git add ./* $ git commit -a 3) push