There is no Tracking Information for the Current Branch

Solve it by specifying the branch on the server (normally I would just do a git pull ‘branch-name’, which fails in this case): git pull origin ‘branch-name’

Read More

Git Ignore a Directory

There is a folder within a project that you don’t want to be tracked with git, to do this on a windows computer: 1. In the project folder managed by git, make a new file named ‘.gitignore.’ (no quotes, but with periods at both ends — it will automatically be changed to ‘.gitignore’ 2. Add […]

Read More