00:00:29 That is weird. 00:00:33 I will have to reach out to the folks ther. 08:53:16 richlowe will check, thanks! 16:50:47 [illumos-gate] 15135 stdalign.h is very C11-y, but perhaps disrespectful of C++ -- Robert Mustacchi 23:03:10 sorry 23:03:28 is there a git thing to just ssve my changes> 23:20:18 git stash 23:20:35 and git stash apply to get them again 23:21:15 danke, toasterson 23:21:31 but can i do that cross machines? 23:21:50 no, there you need a seperate branch 23:21:57 thats what branches are for 23:22:05 oh, i could fork the code 23:22:09 !!! 23:22:21 Yep valid use for forks :) 23:22:42 sorry, i have to mothball my illumos box 23:23:20 have a paying client and the software won't run without another physical box 23:23:56 can git stash save a traball? 23:23:59 tarball\ 23:38:14 git stash saves whatever changes are shown by git status / git diff 23:38:46 it has convenient options to save subsets, if you need that too, `git stash -k` is particularly useful. 23:38:58 if you want a tarball, you want `git archive` 23:39:06 see `git help archive` there's a bunch of formats and stuff