Is it possible to track folders and files in a local repo but not on a remote so that when you push changes, they don\'t get pushed remotely? The reason being is that I\'m u
You should create a local branch in addition to the branch that is synced with the remote repository. Having a local branch can be made by....
git branch mybranch
Then you can go between the branches by using the checkout function
git checkout mybranch //now in local branch
git checkout repobranch //now in repository branch
WARNING Make sure when you push, you only push the changes in your repobranch. You don't want to have the changes you've made in the local branch to start appearing in your remote repository