Skip to content

Commit

Permalink
Add typo command
Browse files Browse the repository at this point in the history
  • Loading branch information
mhartl committed Mar 17, 2016
1 parent 875d1c5 commit 20418ef
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ The `git-utils` used to be pure Bash scripts, but they are now available as a Ru
* `git delete-remote-branch <branch>`: deletes the remote branch if it is safe to do so
* `git switch <pattern>`: switches to the first branch matching the given pattern
* `git sync [branch]`: syncs the given branch with the remote branch (defaults to master)
* `git typo`: makes a commit with the message "Fix typo"
* `git undo`: undoes the last commit

## Aliases
Expand Down
4 changes: 4 additions & 0 deletions bin/git-typo
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/usr/bin/env ruby

# Makes anal changes.
system 'git commit -am "Make anal changes"'
2 changes: 1 addition & 1 deletion lib/git-utils/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Git
module Utils
VERSION = "0.6.5"
VERSION = "0.7.0"
end
end

0 comments on commit 20418ef

Please sign in to comment.