The problem: how to detach a specific file from a Github repo to seperate development Repo (or branch) while retaining the possibility to sync in from upstream (git pull_) and sync back (pull request) to the original repo.
The use case: I forked a library on GitHub and I'm working on various improvements, changes etc. my problem is that the forked repo is actually a complete demo site including the lib,I don't want the dem since I'm actually working with another demo site. The optimal solution for me would be being able to commit to the lib in my demo site and being able to retain the connection to the original repo without deleting the original demo site files or copying mine.
Yes, I guess I can do it with some make/build script copying the file all around but It doesn't look like an elegant (and maintainable) solution.
If this is the solution what would be the best tool for the job? I heard about git hooks but never actually used them. maybe TraviCI can come to the rescue? something else?
I'll be glad for any help
Edit: following some advice here I checked about git remote. but this works repo wide, I need to seperate a specific file (or all but a speific file) that her and only her would keep the remote push/pull connection with the original repo.
Another edit: following a suggestion about using git submodules) I would like to clarify: submodules seems to solve half the problem - the half about seperating the lib from the demo site and actually, if I was the original maintainer I could do that, allowing others to fork only the lib without the demo site. since I'm not the maintainer then (If I understand correctly) seperating the lib to a submodule wouldn't solve the problems of keeping it synced with the original lib without syncing the rest of the demo site.