+[2015-07-25T22:02:51Z]hololeapgandaro: .cs is getting detected as smalltalk +[2015-07-25T22:05:07Z]mihihololeap, 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]hololeapmihi: yeah, it doesn't seem to matter too much +[2015-07-25T22:12:48Z]CounterPillowhttps://github.com/WebMBro/WebMConverter thanks guys you're making the world a better place +[2015-07-25T23:46:10Z]mcheleni 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
+[2015-07-26T04:06:12Z]roxluhi +[2015-07-26T04:06:48Z]roxluWhen I have two remotes, is there a way to merge all commites of remote A with remote B ? +[2015-07-26T04:25:32Z]larkuHey 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]Seveaslarku: 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]larkuSeveas, thanks.