+[2020-04-25T01:30:03Z]nedbatnickgaw: free can make private repos: https://github.com/pricing +[2020-04-25T10:06:41Z]canton7nickgaw, yeah, that was changed fairly recently +[2020-04-25T14:13:31Z]pat64Will GitHub Actions artifacts always be ZIP files? Or can I have another binary file directly available as an artifact, too? +[2020-04-25T16:37:34Z]teuthow to merge local master with github other brancg? +[2020-04-25T16:37:36Z]teuth*
+[2020-04-26T01:05:08Z]Viking667On a github repo, is there a way of winding back to a specific point and truncating at that point? (i.e. I want to full-out rewind to a specific commit) and drop the later commit +[2020-04-26T01:16:39Z]R2robotthere is, but I forget how. :D +[2020-04-26T01:16:58Z]R2roboti think it's a matter of pointing head to that commit +[2020-04-26T01:24:18Z]R2robot!reset--hard +[2020-04-26T01:24:18Z]gitinfoYou can go back to the last commit, or any other commit (effectively getting rid of commits which can cause issues, see !rewrite), using 'git reset --hard' with an optional commit/ref argument. This will irrevocably destroy all uncommitted changes, so please be careful!