diff --git a/History.md b/History.md index b6cff10..72143af 100644 --- a/History.md +++ b/History.md @@ -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 ================== diff --git a/Readme.md b/Readme.md index 976fbab..252bbf5 100644 --- a/Readme.md +++ b/Readme.md @@ -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_. diff --git a/bin/git-extras-version b/bin/git-extras-version index fdaff3e..45bef39 100755 --- a/bin/git-extras-version +++ b/bin/git-extras-version @@ -1,2 +1,2 @@ #!/bin/sh -echo "0.0.4" \ No newline at end of file +echo "0.0.5" \ No newline at end of file