Is it possible to create a have a private repository for linux packages.
i.e.
sudo apt-get install X
where X is located in a private server only accessible to me and others with permissions?
If so, how would one go about doing this?
(Essentially X would just contain useful bash functions, my colleagues and I have developed)
Furthermore, can I apt-get install
directly from github? E.g.
sudo apt-get install git+https://github.com/X/Y.git
(something roughly along these lines)