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