Spring Boot
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Chris Beams 3475be4db9 Introduce README.md 13 years ago
_layouts Clean up links 13 years ago
bootstrap extract common page elements 13 years ago
css Shorten "documentation" to "docs" 13 years ago
font-awesome extract common page elements 13 years ago
img extract common page elements 13 years ago
js extract common page elements 13 years ago
.gitignore Ignore Vim swap files 13 years ago
README.md Introduce README.md 13 years ago
_config.yml Replace COMMON_README.md with common.html 13 years ago
favicon.ico Add Spring leaf favicon 13 years ago
index-common.html Introduce README.md 13 years ago

README.md

Introduction

This README lives at https://github.com/springframework/gh-pages#readme. If you're seeing it within a specific Spring project's 'gh-pages' branch, that's because this file, along with other files gets periodically merged in order to share common content like headers and footers, CSS, etc.

If you're reading this file

How to start a new 'gh-pages' Project page

From within your Spring project's git checkout directory:

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

Create _config.yml file and add update your project info

For example:

name: Spring Data JPA
baseurl: /spring-data-jpa

Create index.html

  1. Copy common-index.html to index.html
  2. Add your content

Commit your changes

git push origin gh-pages

How to keep common gh-pages content up to date

git checkout gh-pages
git pull --no-ff gh-pages-upstream gh-pages