I've been trying to figure out how to do the following with Git:
So I have a website folder with a git repo and commits and everything. I've usually been downloading Bootstrap as a ZIP and extracting it into my repo. But there's upstream changes on Bootstrap's GitHub that I feel might be useful to pull in my project. I'd like to periodically fetch and merge their new version of bootstrap without having to re-download and re-commit bootstrap to my repo everytime there's a new big change.
So how do I go along taking Bootstrap's repo, cloning (?) in my project without having the hundreds of commits from Bootstrap cluttering up my history, and JUST fetch their upsteam changes?
Thanks so much!