Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ghedamat/swift-git-commit
another swift experiment (that would have been done much easier in bash/with a custom git command :P)
https://github.com/ghedamat/swift-git-commit
Last synced: 15 days ago
JSON representation
another swift experiment (that would have been done much easier in bash/with a custom git command :P)
- Host: GitHub
- URL: https://github.com/ghedamat/swift-git-commit
- Owner: ghedamat
- Created: 2015-01-01T00:35:14.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-01-01T00:43:47.000Z (almost 10 years ago)
- Last Synced: 2024-10-28T17:16:51.825Z (about 2 months ago)
- Language: Swift
- Homepage:
- Size: 145 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# git-ticket-commit
another simple Swift experimentstores you current working pivotal ticket id into your home directory and appends that to every commit message
```
Usage: git-commit [options]
-t, --ticket:
set current ticket number
-p, --print:
print current ticket number
-c, --commit:
commit with current ticket
-h, --help:
Prints a help message.
```suggested aliases:
```
alias gt="git-commit -t"
alias gp="git-commit -p"
alias gc="git-commit -c"
```## build
run
```
xcodebuild install
```
in the project directory