gitcycle 0.1.16 → 0.1.17

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/README.md +3 -3
  2. data/gitcycle.gemspec +1 -1
  3. data/lib/gitcycle.rb +2 -2
  4. metadata +4 -4
data/README.md CHANGED
@@ -115,13 +115,13 @@ If you are working in a fork, it is easy to track upstream branches:
115
115
  Todo
116
116
  ----
117
117
 
118
- * Fix git fatal error (related to pull?)
119
118
  * On pass or fail, send email to Github email
120
119
  * Change QA branch name to qa_login_branch
121
120
  * Note you can use gitc with a string
122
- * Tag issue with Lighthouse tags (if == backend or frontend)
123
121
  * gitc qa pass, should not set ticket to pending-approval if its already resolved
124
122
  * If gitc reset happens on branch with Github issue, close the existing issue
125
123
  * Add comment on lighthouse with issue URL
126
124
  * Instead of detecting CONFLICT, use error status $? != 0
127
- * Label issues with ticket milestone?
125
+ * Label issues with ticket milestone?
126
+ * gitc LH-ticket should not created a redis record right away, what happens if someone control-c
127
+ * gitc -h or gitc help
data/gitcycle.gemspec CHANGED
@@ -6,7 +6,7 @@ $:.unshift lib unless $:.include?(lib)
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "gitcycle"
9
- s.version = '0.1.16'
9
+ s.version = '0.1.17'
10
10
  s.platform = Gem::Platform::RUBY
11
11
  s.authors = [ 'Winton Welsh' ]
12
12
  s.email = [ 'mail@wintoni.us' ]
data/lib/gitcycle.rb CHANGED
@@ -391,7 +391,7 @@ class Gitcycle
391
391
  else
392
392
  puts "Tracking branch '#{remote}/#{name}'.\n".green
393
393
  run("git fetch -q #{remote}")
394
- run("git checkout --track -b #{name} #{remote}/#{name}")
394
+ run("git checkout -b #{name} #{remote}/#{name}")
395
395
  end
396
396
 
397
397
  run("git pull #{remote} #{name}")
@@ -417,7 +417,7 @@ class Gitcycle
417
417
  add_remote_and_fetch(options)
418
418
 
419
419
  puts "Checking out remote branch '#{target}' from '#{owner}/#{repo}/#{branch}'.\n".green
420
- run("git checkout --track -b #{target} #{owner}/#{branch}")
420
+ run("git checkout -b #{target} #{owner}/#{branch}")
421
421
 
422
422
  puts "Fetching remote 'origin'.\n".green
423
423
  run("git fetch -q origin")
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gitcycle
3
3
  version: !ruby/object:Gem::Version
4
- hash: 59
4
+ hash: 57
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 16
10
- version: 0.1.16
9
+ - 17
10
+ version: 0.1.17
11
11
  platform: ruby
12
12
  authors:
13
13
  - Winton Welsh
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2012-01-29 00:00:00 -08:00
18
+ date: 2012-01-31 00:00:00 -08:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency