Git Rebase From Upstream 2020.11.08How to apply new commits in your forked repo from the parent (upstream) repo ?
Local git 2019.12.02Define a repo somewhere in your file system with a bare init mkdir -p /somewhere/repo/test_project cd /somewhere/repo/test_project git init --bare Now create a local folder for your work with init only
Git delete remote branch/tag 2015.01.07As of Git v1.7.0, you can delete a remote branch using : git push origin --delete <branchName> And you can do exactly the same with a tag
GIT - stop tracking files 2014.11.28If you have some files that you need to have in your repo but don’t need to have updates, git allows it :