+ [2020-01-29T22:30:14Z] dka https://docs.gitlab.com/ee/api/issues.html#list-issues , I expect to have 85 results, instead, in both case I have 0 and 20. Why ? and how can I read the issues without bug ? The UI of GitLab display 85 issues without trouble...
+ [2020-01-29T22:30:14Z] dka I am trying to use the API to get all the issues that is in a milestone. I have tried both url: `${getBaseUrl(projectUrl)}/api/v4/projects/${projectId}/milestones/${milestoneId}/issues`; ex explained here https://docs.gitlab.com/ee/api/milestones.html#get-all-issues-assigned-to-a-single-milestone , and I did `${getBaseUrl(projectUrl)}/api/v4/projects/${projectId}/issues?milestone=${milestoneId}&scope=all` as explained here:
+ [2020-01-30T13:40:57Z] anli If I have a public gist with a checklist, can other people check those boxes?
+ [2020-01-30T13:59:56Z] anli Seems that is not possible...
+ [2020-01-30T14:58:07Z] tutunak can any one helps me with new feature sparse checkout? After git sparse-checkout set <dir1> <dir2> <dir3> I want to disable sparse checkout only for one directroy - <dir2>. How can I do that? git sparse-checkout disable will do that for whole repository.

message no. 176737

Posted by anli in #github at 2020-01-30T13:40:57Z

If I have a public gist with a checklist, can other people check those boxes?
+ [2020-01-31T10:56:53Z] benskey Does using git filter-branch to remove a file from history affect timestamps of the commits?
+ [2020-01-31T10:57:17Z] nedbat benskey: you can clone the repo somewhere and try it
+ [2020-01-31T11:08:52Z] canton7 benskey, pretty sure it preserves the timestamps
+ [2020-01-31T11:09:34Z] canton7 benskey, ah, it might rewrite the committer name and timestamp, but leave the author alone? You'll have to try it
+ [2020-01-31T11:10:28Z] benskey Yeah I'm in the process of doing that. Was too afraid to force push..