mirror of
https://github.com/iwata/git-now.git
synced 2026-09-10 07:26:29 -04:00
Merge branch 'hotfix/0.1.0.1'
This commit is contained in:
commit
e761daff73
1
Makefile
1
Makefile
|
|
@ -41,6 +41,7 @@ EXEC_FILES=git-now
|
||||||
SCRIPT_FILES =git-now-add
|
SCRIPT_FILES =git-now-add
|
||||||
SCRIPT_FILES+=git-now-grep
|
SCRIPT_FILES+=git-now-grep
|
||||||
SCRIPT_FILES+=git-now-rebase
|
SCRIPT_FILES+=git-now-rebase
|
||||||
|
SCRIPT_FILES+=git-now-push
|
||||||
SCRIPT_FILES+=gitnow-common
|
SCRIPT_FILES+=gitnow-common
|
||||||
SCRIPT_FILES+=gitnow-shFlags
|
SCRIPT_FILES+=gitnow-shFlags
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
git-now
|
git-now
|
||||||
========
|
========
|
||||||
``git-now`` is a command-line tool for light and temporary commit
|
``git-now`` is a command-line tool for light and temporary commit.
|
||||||
with a log message from time now and diff.
|
It commits with a log message from time now and diff.
|
||||||
|
|
||||||
Usage
|
Usage
|
||||||
---------------
|
---------------
|
||||||
|
|
@ -13,7 +13,7 @@ You can use the same option as ``git add``.
|
||||||
|
|
||||||
$ git now [-n] [-v] [--force | -f] [--interactive | -i] [--patch | -p]
|
$ git now [-n] [-v] [--force | -f] [--interactive | -i] [--patch | -p]
|
||||||
[--edit | -e] [--all | [--update | -u]] [--intent-to-add | -N]
|
[--edit | -e] [--all | [--update | -u]] [--intent-to-add | -N]
|
||||||
[--refresh] [--ignore-errors] [--ignore-missing] [--]
|
[--refresh] [--ignore-errors] [--ignore-missing] [--stat | -s] [--]
|
||||||
[<filepattern>...]
|
[<filepattern>...]
|
||||||
|
|
||||||
### Subcommands
|
### Subcommands
|
||||||
|
|
@ -21,7 +21,8 @@ You can use the same option as ``git add``.
|
||||||
Available subcommands are:
|
Available subcommands are:
|
||||||
|
|
||||||
* rebase - rebase for temporary commits.
|
* rebase - rebase for temporary commits.
|
||||||
* push - rebuild remote branch after rebase.
|
* push - rebuild that is remove and push remote branch.<br />
|
||||||
|
_If you already pushed ``git-now`` commits to remote and rebase these, you should run this subcommand._
|
||||||
* grep - grep temporary commits.
|
* grep - grep temporary commits.
|
||||||
|
|
||||||
_Try 'git now \<subcommand\> help' for details._
|
_Try 'git now \<subcommand\> help' for details._
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,6 @@ git now: making convenient git commit
|
||||||
%install
|
%install
|
||||||
mkdir -p $RPM_BUILD_ROOT/usr/libexec/git-core
|
mkdir -p $RPM_BUILD_ROOT/usr/libexec/git-core
|
||||||
make prefix=$RPM_BUILD_ROOT/usr/libexec/git-core install
|
make prefix=$RPM_BUILD_ROOT/usr/libexec/git-core install
|
||||||
chmod +x $RPM_BUILD_ROOT/usr/libexec/git-core/git-now
|
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
rm -Rf $RPM_BUILD_ROOT
|
rm -Rf $RPM_BUILD_ROOT
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
require 'formula'
|
require 'formula'
|
||||||
|
|
||||||
class GitNow < Formula
|
class GitNow < Formula
|
||||||
url 'https://github.com/iwata/git-now.git', :tag => 'v0.1.0.0'
|
url 'https://github.com/iwata/git-now.git', :tag => 'v0.1.0.1'
|
||||||
version '0.1.0.0'
|
version '0.1.0.1'
|
||||||
head 'https://github.com/iwata/git-now.git', :branch => 'develop'
|
head 'https://github.com/iwata/git-now.git', :branch => 'develop'
|
||||||
homepage 'https://github.com/iwata/git-now'
|
homepage 'https://github.com/iwata/git-now'
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue