diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-16 15:59:01 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-11-16 15:59:01 +0300 |
commit | 9cc06a3d96690f1495a7bb2b363a98f1ec7f03e3 (patch) | |
tree | 54e6178834ee74b2c82c73573e1b2df928653d60 | |
parent | 7cad6213c0cf7874f6d3cc9329a8d3a53bc9f629 (diff) | |
download | all-9cc06a3d96690f1495a7bb2b363a98f1ec7f03e3.tar.gz all-9cc06a3d96690f1495a7bb2b363a98f1ec7f03e3.tar.bz2 all-9cc06a3d96690f1495a7bb2b363a98f1ec7f03e3.tar.xz all-9cc06a3d96690f1495a7bb2b363a98f1ec7f03e3.zip |
Add readme file.
-rw-r--r-- | README | 41 |
1 files changed, 41 insertions, 0 deletions
@@ -0,0 +1,41 @@ +This repository used for unite all other evol online repositories. + +Before using it, need create own public key, register in https://gitorious.org/ and own key to gitorious account. + +Each directory here mean some other repository. +Also in this repository located scripts for mass work with all other repositories. + +Known scripts: +./git.sh - this script allow run any git command in all existing repositories. +Usage: + ./git.sh gitcommand +Example: + ./git.sh diff + +./init.sh - this script initialize new repositories. +Usage: + ./init.sh task +Allowed tasks: + all - all known repositories. + server - repositories for run server. + client - repositories for client data development. + music - repositories with music. + local - repositories for running local server. + tools - repositories with tools. +This command allow any combinations with different tasks. +Example: + ./init.sh local + +./pull.sh - this script allow pull in all repositories if pull is safe. +Usage: + ./pull.sh +This command pulling only if repository in clean state and all commits pushed. + +./push.sh - this script allow push all repositories if push is safe. +Usage: + ./push.sh +This command pushing only if repository in clean state. + +./status.sh - this script show all repositories state. +Usage: + ./status.sh |