git-daily icon indicating copy to clipboard operation
git-daily copied to clipboard

[DEPRECATED] Git-daily is a workflow management tool for Git. Managing branches, releases and remote collaborations.

git-daily

================================================== [DEPRECATED] git-daily is no longer maintained.

"git-daily" is a tool which helps you to do daily workflow easier.

Sub-commands are::

git daily init
git daily config
git daily push
git daily pull
git daily release open
git daily release list
git daily release sync
git daily release close
git daily hotfix  open
git daily hotfix  list
git daily hotfix  sync
git daily hotfix  close
git daily version
git daily help

Requirements

  • Git: >= 1.7.0
  • PHP: >= 5.2.0

Installation

Install from openpear.org ::

sudo pear channel-discover openpear.org
sudo pear install openpear/Git_Daily

Install develop version ::

cd /path/to/dir
git clone git://github.com/sotarok/git-daily.git
./git-daily/src/bin/.gen-local-git-daily.sh
sudo ln -s /path/to/dir/git-daily/src/bin/git-daily-local /usr/local/bin/git-daily
sudo ln -s /path/to/dir/git-daily/src/Git /path/to/pear/Git

You can find the path /path/to/pear by the command php -i | grep include_path .

Cheat Sheet

Initialization ^^^^^^^^^^^^^^^^^^^^^^^^^^

To initialize, use ::

git daily init

Configuration ^^^^^^^^^^^^^^^^^^^^^^^^^^

  • To show configuration for git-daliy use ::

    git daily config

  • To set the configuration use ::

    git daily config [] []

Release ^^^^^^^^^^^^^^^^^^^^^^^^^^

  • To open the release process of the day, use ::

    git daily release open

  • To sync opened or closed daily release process, use ::

    git daily release sync

  • To show the release list, use::

    git daily release list

  • When gitdaily.logurl is defined, git-daily shows author lists with logurl. git-daily replaces %s in gitdaily.logurl to a commit id. ::

    [config] gitdaily.logurl = "http://github.com/user/git-daily/commit/%s"

    [output] @userA: http://github.com/user/git-daily/commit/0123456789..... ...

  • To close daily release process, use ::

    git daily release close

Hotfix ^^^^^^^^^^^^^^^^^^^^^^^^^^

  • To open the hotfix process of the day, use ::

    git daily hotfix open

  • To sync opened or closed hotfix process, use ::

    git daily hotfix sync

  • To show the release list, use::

    git daily hotfix list

  • To close hotfix process, use ::

    git daily hotfix close

Contribution

Use gitFlow <https://github.com/nvie/gitflow>_ to develop git-daily. When you want to fix some bugs or implemente some new features, commit not to master branch but to develop branch.

Test ^^^^^^

  • PHPUnit >= 3.5
  • PHP_Coverage >= 1.1.0

Copy phpunix.xml.dist to phpunit.xml and modify configurations if you need. Run command phpunit and then phpunit.xml is loaded automatically ::

$ phpunit

Links

References here (Japanese Only).

  • http://speakerdeck.com/u/sotarok/p/git-daily-a-tool-supports-a-daily-workflow-with-remote
  • http://d.hatena.ne.jp/sotarok/20111015/pyfes_git_daily

License

::

 The BSD License

 Copyright (c) 2011-2012, Sotaro Karasawa
 All rights reserved.

 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:

   - Redistributions of source code must retain the above copyright
     notice, this list of conditions and the following disclaimer.
   - Redistributions in binary form must reproduce the above
     copyright notice, this list of conditions and the following
     disclaimer in the documentation and/or other materials provided
     with the distribution.
   - Neither the name of the author nor the names of its contributors
     may be used to endorse or promote products derived from this
     software without specific prior written permission.

 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.