git-start 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/README.md +27 -2
- data/lib/git-start/plugins/pivotal.rb +2 -1
- data/lib/git-start/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fa77f196a5c6c5bde1bb767336e2fc09d96f6014
|
4
|
+
data.tar.gz: f3fd57c3db6513ed9f0ce1343f6e12ff110a1511
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 63cbdba8b877d191988da4e1aaa9250c6439bc6c0fc040a61e6353499c12ee05d0b5ebf7b3bd2c423034e2b144203e6ae422b933eabc67211f27b8819750a442
|
7
|
+
data.tar.gz: 32eb74993b0260b053bde063ec01116f2601e5cfad6669b31c8cd88a888dcd28b7a75686b08c0e9ba0f3a6934455ed000804fe818e732d30fe8abbdf411593f6
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -3,10 +3,11 @@
|
|
3
3
|
`git start`—a Git workflow helper that:
|
4
4
|
|
5
5
|
* Shows all your PivotalTracker stories
|
6
|
-
* Creates feature/bug/chore branches for a chosen story
|
6
|
+
* Creates feature/bug/chore branches (e.g. feature/4711-create-profile) for a chosen story
|
7
7
|
**Bonus:** you can also create a new story in the command line
|
8
|
+
* Asks to estimate the story if needed
|
8
9
|
* Sets the story started
|
9
|
-
* _Optional:_ Outputs a summary of the story to the command line
|
10
|
+
* _Optional:_ Outputs a summary of the story to the command line (incl. description, tasks, and link to story)
|
10
11
|
|
11
12
|
`git finish`—to call after you finished the story:
|
12
13
|
|
@@ -16,6 +17,9 @@
|
|
16
17
|
* _Optional:_ Opens a GitHub pull request (incl. link to the corresponding PivotalTracker story)
|
17
18
|
* Checks out *master*
|
18
19
|
|
20
|
+
The first questions will only be asked once:
|
21
|
+
![git-start-demo](https://cloud.githubusercontent.com/assets/103399/5758653/6e2229c4-9cc7-11e4-9b49-c05e87817499.png)
|
22
|
+
![git-start-pull-request](https://cloud.githubusercontent.com/assets/103399/5758752/5f7af6de-9cc8-11e4-8e04-f968ee6acf94.png)
|
19
23
|
|
20
24
|
## Setup
|
21
25
|
|
@@ -24,3 +28,24 @@ gem install git-start
|
|
24
28
|
```
|
25
29
|
|
26
30
|
Other configuration happens on the fly. All information will be requested when needed.
|
31
|
+
|
32
|
+
|
33
|
+
## Work in Progress
|
34
|
+
|
35
|
+
This is brand new but at [Homify](https://www.homify.co.uk) we’re using it for our workflows. It is mostly done, feedback is welcome, and [GitHub issues integration](https://github.com/hagenburger/git-start/issues/1) as alternative to PivotalTracker is in the planning. Other tools should be easy to integrate. Have a look into the source or ping me [on Twitter](https://twitter.com/hagenburger). If you have a better name for this, let me know ;)
|
36
|
+
|
37
|
+
|
38
|
+
## Contributing
|
39
|
+
|
40
|
+
1. Fork it
|
41
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
42
|
+
3. Commit your changes (`git commit -am 'add some awesome feature'`)
|
43
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
44
|
+
5. Create new Pull Request
|
45
|
+
|
46
|
+
|
47
|
+
## Copyright
|
48
|
+
|
49
|
+
Copyright 2015 [Nico Hagenburger](http://www.hagenburger.net).
|
50
|
+
See [MIT-LICENSE.txt](MIT-LICENSE.txt) for details.
|
51
|
+
Get in touch with [@hagenburger](http://twitter.com/hagenburger) on Twitter or [open an issue](https://github.com/hagenburger/git-start/issues/new).
|
data/lib/git-start/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: git-start
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nico Hagenburger
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-01-
|
11
|
+
date: 2015-01-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: hooks
|