+ [8 years ago] pisto anyway, I would like to avoid setting up a web server for that, that's why I'd prefer something else
+ [8 years ago] pisto uhm, looks like pushbullet does what I need, even though it relies on an external provider
+ [8 years ago] serverlord So I want to have an empty temp/ folder when checking out from git - but the actual files inside - except .gitignore that is used for the empty folder - should be ignored.
+ [8 years ago] Seveas serverlord: so put a * in that .gitignore

message no. 154786

Posted by Zarthus in #github at 2016-10-26T15:15:52Z

ilyaigpetrov: it uses/used gravatar in the past, but you can totally manually upload yours
+ [8 years ago] apes If you check a large blob into a branch, push to github, then delete that branch, would that blob remain part of the git repo cloned to other hosts?
+ [8 years ago] apes Or would git only clone refs to existing branches?
+ [8 years ago] preaction apes: if there's no references to that blob, it will be garbage-collected eventually. my guess is git will not download things that aren't referenced by the refs you're downloading (the refs to existing branches)
+ [8 years ago] Seveas preaction: good guess. apes if you haven't merged that branch into another branch, the blob will not be part of the clone.