The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
22 views

Github custom domain for project pages

I've read all the posts about this and still can't get it to work. Here's my situation: I have a github repo called "father". Inside that repo I have a branch called "gh-pages" with a CNAME.txt file ...
1
vote
1answer
62 views

Okay to push directly to gh-pages branch without pushing to master branch?

I am hosting a blog on github as a project page and I find it tiresome to push to master first and then to gh-pages.I found that pushing to gh-pages directly works too.I wanted to know if it is okay ...
1
vote
0answers
33 views

Is there a way to use a pre/post commit hook in github to update gh-pages branch from master?

I have a completely static site (eg. https://github.com/robertjchristian/angular-enterprise-seed) hosted on github, where I work mostly out of the master branch. The contents of the /app/ directory ...
3
votes
2answers
365 views

Deploying Jekyll to Github Pages

I have built a site locally with Jekyll, and have pushed it to a new master repo (username.github.com) and the site works great yay. My question is, how do I move just the deployable part, the _site ...
-1
votes
1answer
135 views

How can I set the customer 404 page on gh-pages? [closed]

I am trying to set a custom 404 page on Github gh-pages. I have created a page here: http://garemoko.github.com/TinCanCoUK/404.html which works when visited directly. However, if I go to ...
0
votes
1answer
48 views

Exporting maven dependencies to github pages for ant users

We have a project for Android on GitHub that: contains many submodules is fully mavenized and works well with maven produces artefacts of type jar We found out a simple way to explain to new users ...
4
votes
3answers
279 views

How do I prevent the GitHub Pages “Automatic Generator” to remove everything before regenerate the site?

I created a wonderful GitHub Pages website for my little project, and I added some other pages into the gh-pages branch. My problem is that, everytime I regenerate the website from ...
21
votes
1answer
3k views

Hosting a Maven repository on github

I have a fork of a small open sourced library that I'm working on on github. I'd like to make it available to other developers via maven, but I don't want to run my own Nexus server, and because it's ...
1
vote
3answers
195 views

build into gh-pages branch from master branch

What I want to do: I am using github. I have two branches. Master and gh-pages. I have a unity3d project on my master branch. When I run it, it will generate a webpage. I want to display the contents ...
0
votes
1answer
229 views

Nanoc changing the base path when deploying page in github

I have a simple static page app that i have built with nanoc and i want to deploy it as a github page. Everything goes well except that the assets (like css, javascripts) and all the links in general ...
1
vote
1answer
106 views

GitHub forked project: right way to have own gh-pages

When a github project is forked the gh-pages related to initial project. Can i have a modifications in gh-pages and do not synchronize it with parent project? the same question is for trivial README ...
1
vote
2answers
1k views

Pages github page 404

https://github.com/roine/p1/tree/gh-pages here is a my github repository on the gh-pages branch. Everything looks good, I have my index.html, my css, js and pictures folders. But when I access ...
2
votes
2answers
370 views

Jekyll - split content up into two columns

I have a basic layout page template: --- layout: default --- <header class="sidebar"> {{ page.title }} </header> <section class="content"> {{ content }} </section> ...
0
votes
0answers
157 views

After a push,Unable to run jekyll

I don't know why github pages can't run jekyll,because I run it well at localhost. However after pushing all files to gh-pages by only branch gh-pages, github tells me: The page build failed with the ...
6
votes
2answers
937 views

301 redirect for site hosted at github?

Here's a Github repository of mine: https://github.com/n1k0/casperjs There's a gh-pages branch to hold the project documentation, which is basically the project website: ...
0
votes
1answer
125 views

How do I change `_target` output directory for HTML Builder in sphinx?

I'm trying to use Sphinx to build docuemntation to push to github pages. I'm using the default html builder to generate help documentation and pushing that into a gh-pages branch (see ...
3
votes
1answer
317 views

Github pages in forked repo

Are github pages within my account created automatically when I fork a repo which already includes gh-pages branch?
1
vote
1answer
440 views

Netbeans/Git; copy individual files between branches

I'm using Netbeans with Git (hosted on github). Github uses a special branch in the git repository, "gh-pages", whose content is hosted on their site. My project generates a stylesheet and demo ...
0
votes
1answer
126 views

Git Add Without Directory?

My git repo's master branch structure is as follows /demo index.html style.css reset.css jquery.dimlights.js jquery.dimlights.css jquery.dimlights.min.js jquery.dimlights.min.css ...
13
votes
1answer
2k views

Add syntax highlighting to gh-pages

Is there an easy way to add syntax highlighting to my various plugin's gh-pages using github's Pygments? I know that every page runs through the Jekyll engine and provides syntax highlighting (ref). ...
2
votes
1answer
266 views

Names starting with underscore shows errors Page doesnot exists for gh-pages branch

I have an issue with gh-pages of github. The html pages which start with _ ( underscore ) shows the error. Page does not exist! Read the Full Documentation Instructions for setting up ...
8
votes
2answers
1k views

How to create Github pages from a project's documentation?

I have a project on Github that has a directory containing some automatically generated HTML documentation. I would like to use that documentation within Github's project pages facility. So, I've ...
26
votes
2answers
2k views

Github: Mirroring gh-pages to master

I'm developing a jQuery plugin that's being hosting on GitHub. It has a demo included of which I'm manually copying and pushing to the branch gh-pages, what I'd like to do is have it so when I push a ...
15
votes
4answers
5k views

git branch: gh-pages

I have a repo on GitHub. Recently I have discovered GitHub's pages and I want to use them. I would like to create this new branch and then, when I need to, either commit on master branch or on ...