CMS на Kohana. Заброшена.
Go to file
2008-12-09 19:10:02 -06:00
application Updated 3.0: 2008-12-09 00:17:28 -06:00
media Merged GeertDD/kohana and added new media files 2008-12-08 22:36:25 -06:00
system Added remote class, requires CURL 2008-12-09 19:10:02 -06:00
.gitignore Updated .gitignore 2008-12-09 14:56:25 -06:00
example.htaccess Added an example .htaccess file 2008-12-09 19:39:54 +01:00
index.php Updated 3.0: 2008-12-09 00:17:28 -06:00
install.php Updated install.php to make sure the application cache is writable 2008-12-09 11:02:44 -06:00
README.markdown Updated README to include details about keeping forks in sync with the origin 2008-12-09 14:47:30 -06:00

Kohana PHP Framework, version 3.0 (dev)

This is the current development version of Kohana.

Forking, Merging, and Tracking Origin

With git, there is no central repository. In order to keep your local fork in sync with "origin", you will to set up the main repository as a remote:

git remote add shadowhand git://github.com/shadowhand/kohana.git

This adds "shadowhand" as a remote repository that can be pulled from. (Only do this once!)

git checkout -b shadowhand/master

This creates a local branch "shadowhand/master" of the master branch of the "shadowhand" respository. (Only do this once!)

git checkout shadowhand/master

This switches to your new "shadowhand/master" branch.

git pull shadowhand master

This pulls all of the changes in the remote into the local "shadowhand/master" branch.

git checkout master

This switches back to your local master branch.

git merge shadowhand/master

This merges all of the changes in the "shadowhand/master" branch into your master branch.

git push

This pushes all the merged changes into your local fork. At this point, your fork is now in sync with the origin repository!