Files
spring-boot/COMMON_README.md
T

571 B

Projects GH Pages Common Content

To start a new 'gh-pages' Project page:

git remote add gh-pages-common https://github.com/springframework/common.git
git checkout --orphan gh-pages
git pull gh-pages-common master

To create a new page:

Create a file (e.g. index.html) with this at the top:

---
layout: default
title: Spring Framework - Projects
---

YOUR CONTENT HERE

After you've done your custom page:

git push origin gh-pages

To update common content:

git checkout gh-pages
git pull gh-pages-common master