+ [2015-07-25T22:02:51Z] hololeap gandaro: .cs is getting detected as smalltalk
+ [2015-07-25T22:05:07Z] mihi hololeap, although it tells it will render as smalltalk, a C# sample I copied in rendered better than a Smalltalk sample ... :)
+ [2015-07-25T22:05:38Z] hololeap mihi: yeah, it doesn't seem to matter too much
+ [2015-07-25T22:12:48Z] CounterPillow https://github.com/WebMBro/WebMConverter thanks guys you're making the world a better place
+ [2015-07-25T23:46:10Z] mchelen i have a custom CNAME for an org pages, and now when i make a project in that org going to example.com/project-name doesn't work

message no. 105036

Posted by spuz in #github at 2015-07-25T09:15:01Z

hi, what's the reason that when setting up a gh-pages branch, it must be an orphaned branch rather than a regular branch?
+ [2015-07-26T04:06:12Z] roxlu hi
+ [2015-07-26T04:06:48Z] roxlu When I have two remotes, is there a way to merge all commites of remote A with remote B ?
+ [2015-07-26T04:25:32Z] larku Hey is there a simple way to take a forked repo and then merge pull requests for the orig repo into mine fork?
+ [2015-07-26T07:52:28Z] Seveas larku: you can fetch the pull request (git fetch url-of-original refs/pull/pull-number-here/head:refs/heads/temp-branch-for-pull) and then merge it (git merge temp-branch-for-pull)
+ [2015-07-26T07:53:37Z] larku Seveas, thanks.