Git Global Settings Related Setup: https://gist.github.com/hofmannsven/6814278 Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/ Interactive Beginners Tutorial: http://try.github.io/ Git Cheatsheet by GitHub: https://services.github.com/on-demand/downloads/github-git-cheat-sheet/ Reminder Press minus + shift + s and return to chop/fold long lines!
Pull from master and create a new branch git checkout master git pull git checkout -b <branch> When mergin you have to be in the branch you want to merge into In this example we are merging feature/new-feature branch with the master branch.
Getting Started with the Backend Initialize Project Create a directory for your project Initialize your project with npm init Initialize git with git init Create a .gitignore file in your projects root directory Add .env, node_modules and all other possible spec files to .gitignore