gitcycle 0.1.16 → 0.1.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.md +3 -3
- data/gitcycle.gemspec +1 -1
- data/lib/gitcycle.rb +2 -2
- 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
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
|
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
|
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:
|
4
|
+
hash: 57
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 0.1.
|
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-
|
18
|
+
date: 2012-01-31 00:00:00 -08:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|