mirror of
https://github.com/tj/git-extras.git
synced 2026-09-16 02:16:17 -04:00
Merge branch 'master' of git://github.com/visionmedia/git-extras
This commit is contained in:
commit
3c04b29ba5
|
|
@ -1,4 +1,12 @@
|
|||
|
||||
0.0.5 / 2010-10-08
|
||||
==================
|
||||
|
||||
* Added `git-delete-submodule` [Jonhnny Weslley]
|
||||
* Added; `git-ignore` without pattern shows .gitignore contents [Jonhnny Weslley]
|
||||
* Added; `git-setup` argument is now optional, defaulting to the CWD
|
||||
* Added REPL alias "ls" as ls-files
|
||||
|
||||
0.0.4 / 2010-09-10
|
||||
==================
|
||||
|
||||
|
|
|
|||
|
|
@ -167,6 +167,12 @@ of commits included in the commitish:
|
|||
... added '*.o'
|
||||
... added '*.log'
|
||||
|
||||
Running `git-ignore` without a pattern will display the current patterns:
|
||||
$ git ignore
|
||||
build
|
||||
*.o
|
||||
*.log
|
||||
|
||||
## git-delete-branch <name>
|
||||
|
||||
Deletes local and remote branch _name_.
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
#!/bin/sh
|
||||
echo "0.0.4"
|
||||
echo "0.0.5"
|
||||
Loading…
Reference in a new issue