+[2020-01-29T22:30:14Z]dkahttps://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]dkaI 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]anliIf I have a public gist with a checklist, can other people check those boxes? +[2020-01-30T13:59:56Z]anliSeems that is not possible... +[2020-01-30T14:58:07Z]tutunakcan 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.
If I have a public gist with a checklist, can other people check those boxes?
+[2020-01-31T10:56:53Z]benskeyDoes using git filter-branch to remove a file from history affect timestamps of the commits? +[2020-01-31T10:57:17Z]nedbatbenskey: you can clone the repo somewhere and try it +[2020-01-31T11:08:52Z]canton7benskey, pretty sure it preserves the timestamps +[2020-01-31T11:09:34Z]canton7benskey, 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]benskeyYeah I'm in the process of doing that. Was too afraid to force push..