$ git clone *repository link*
$ git fetch
$ git checkout -b *branch name*
$ git checkout *branch name*
$ git status
$ git add webpack.config.js
or add all files
$ git add .
$ git commit -m '*commit message*'
$ git commit -a -m '*commit message*'
$ git push origin *brach*
$ git pull origin *branch*
// on master branch
$ git pull origin master
$ git checkout -b fix/layout
$ git commit -a -m 'Fixed footer padding'
$ git push origin fix/layout