mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Updated github path
This commit is contained in:
parent
813749e909
commit
5796ed225e
@ -1,3 +1,3 @@
|
|||||||
# SilverStripe Framework (a.k.a "sapphire")
|
# SilverStripe Framework (a.k.a "sapphire")
|
||||||
|
|
||||||
[![Build Status](https://secure.travis-ci.org/silverstripe/sapphire.png?branch=2.4)](https://travis-ci.org/silverstripe/sapphire)
|
[![Build Status](https://secure.travis-ci.org/silverstripe/silverstripe-framework.png?branch=2.4)](https://travis-ci.org/silverstripe/silverstripe-framework)
|
@ -24,7 +24,7 @@ See [frequently asked questions](/installation/from-source#frequently-asked-ques
|
|||||||
SilverStripe core is currently hosted on [github.com/silverstripe](http://github.com/silverstripe). The core consists of four parts:
|
SilverStripe core is currently hosted on [github.com/silverstripe](http://github.com/silverstripe). The core consists of four parts:
|
||||||
|
|
||||||
* The `installer` project ([github.com/silverstripe/silverstripe-installer](http://github.com/silverstripe/silverstripe-installer))
|
* The `installer` project ([github.com/silverstripe/silverstripe-installer](http://github.com/silverstripe/silverstripe-installer))
|
||||||
* The `sapphire` module ([github.com/silverstripe/sapphire](http://github.com/silverstripe/sapphire))
|
* The `sapphire` module ([github.com/silverstripe/silverstripe-framework](http://github.com/silverstripe/silverstripe-framework))
|
||||||
* The `cms` module ([github.com/silverstripe/silverstripe-cms](http://github.com/silverstripe/silverstripe-cms))
|
* The `cms` module ([github.com/silverstripe/silverstripe-cms](http://github.com/silverstripe/silverstripe-cms))
|
||||||
* A sample theme called `blackcandy` ([github.com/silverstripe-themes/silverstripe-blackcandy](http://github.com/silverstripe-themes/silverstripe-blackcandy))
|
* A sample theme called `blackcandy` ([github.com/silverstripe-themes/silverstripe-blackcandy](http://github.com/silverstripe-themes/silverstripe-blackcandy))
|
||||||
|
|
||||||
@ -147,7 +147,7 @@ Please replace `<username>` below with your github username.
|
|||||||
|
|
||||||
git clone git@github.com:<username>/silverstripe-installer.git my-silverstripe-project
|
git clone git@github.com:<username>/silverstripe-installer.git my-silverstripe-project
|
||||||
cd my-silverstripe-project
|
cd my-silverstripe-project
|
||||||
git clone git@github.com:<username>/sapphire.git sapphire
|
git clone git@github.com:<username>/silverstripe-framework.git sapphire
|
||||||
git clone git@github.com:<username>/silverstripe-cms.git cms
|
git clone git@github.com:<username>/silverstripe-cms.git cms
|
||||||
git clone git@github.com:<username>/silverstripe-blackcandy.git themes/blackcandy
|
git clone git@github.com:<username>/silverstripe-blackcandy.git themes/blackcandy
|
||||||
|
|
||||||
@ -155,7 +155,7 @@ Now you need to add the original repository as `upstream`, so you can keep your
|
|||||||
|
|
||||||
cd my-silverstripe-project
|
cd my-silverstripe-project
|
||||||
(git remote add upstream git://github.com/silverstripe/silverstripe-installer.git && git fetch upstream)
|
(git remote add upstream git://github.com/silverstripe/silverstripe-installer.git && git fetch upstream)
|
||||||
(cd sapphire && git remote add upstream git://github.com/silverstripe/sapphire.git && git fetch upstream)
|
(cd sapphire && git remote add upstream git://github.com/silverstripe/silverstripe-framework.git && git fetch upstream)
|
||||||
(cd cms && git remote add upstream git://github.com/silverstripe/silverstripe-cms.git && git fetch upstream)
|
(cd cms && git remote add upstream git://github.com/silverstripe/silverstripe-cms.git && git fetch upstream)
|
||||||
(cd themes/blackcandy && git remote add upstream git://github.com/silverstripe-themes/silverstripe-blackcandy.git)
|
(cd themes/blackcandy && git remote add upstream git://github.com/silverstripe-themes/silverstripe-blackcandy.git)
|
||||||
|
|
||||||
|
@ -64,7 +64,7 @@ Now you have two choices: Smaller fixes (e.g. typos) can be edited directly in t
|
|||||||
The module authors will get notified automatically, review your patch, and merge it back as appropriate.
|
The module authors will get notified automatically, review your patch, and merge it back as appropriate.
|
||||||
For new features, we recommend creating a ["feature branch"](http://progit.org/book/ch3-3.html) rather than a really big patch.
|
For new features, we recommend creating a ["feature branch"](http://progit.org/book/ch3-3.html) rather than a really big patch.
|
||||||
|
|
||||||
On github, you can review outstanding [sapphire pull requests](https://github.com/silverstripe/sapphire/pulls) and [cms pull requests](https://github.com/silverstripe/silverstripe-cms/pulls)).
|
On github, you can review outstanding [sapphire pull requests](https://github.com/silverstripe/silverstripe-framework/pulls) and [cms pull requests](https://github.com/silverstripe/silverstripe-cms/pulls)).
|
||||||
|
|
||||||
If you want to learn more about git, please have a look at the [free online git book](http://progit.org/book/) and the [git crash course](http://gitref.org/).
|
If you want to learn more about git, please have a look at the [free online git book](http://progit.org/book/) and the [git crash course](http://gitref.org/).
|
||||||
|
|
||||||
@ -160,7 +160,7 @@ Modifying documentation requires basic [PHPDoc](http://en.wikipedia.org/wiki/PHP
|
|||||||
If you have downloaded SilverStripe or a module, chances
|
If you have downloaded SilverStripe or a module, chances
|
||||||
are that you already have the documentation files - they are kept alongside the source code (in the `docs/` subfolder).
|
are that you already have the documentation files - they are kept alongside the source code (in the `docs/` subfolder).
|
||||||
|
|
||||||
In general, you have to "[fork](http://help.github.com/forking/)" the [github.com/silverstripe/sapphire](http://github.com/silverstripe/sapphire)
|
In general, you have to "[fork](http://help.github.com/forking/)" the [github.com/silverstripe/silverstripe-framework](http://github.com/silverstripe/silverstripe-framework)
|
||||||
and [github.com/silverstripe/silverstripe-cms](http://github.com/silverstripe/silverstripe-cms) repositories
|
and [github.com/silverstripe/silverstripe-cms](http://github.com/silverstripe/silverstripe-cms) repositories
|
||||||
and send us "[pull requests](http://help.github.com/pull-requests/)".
|
and send us "[pull requests](http://help.github.com/pull-requests/)".
|
||||||
Note: Smaller edits can be performed in the github.com web interface on your fork,
|
Note: Smaller edits can be performed in the github.com web interface on your fork,
|
||||||
|
Loading…
Reference in New Issue
Block a user