mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Ignore tags on default gems from ruby core repository.
This commit is contained in:
parent
ad0ea708ca
commit
9132153930
1 changed files with 2 additions and 2 deletions
|
@ -327,12 +327,12 @@ def update_default_gems(gem)
|
||||||
Dir.chdir("../../#{author}/#{repository}") do
|
Dir.chdir("../../#{author}/#{repository}") do
|
||||||
unless `git remote`.match(/ruby\-core/)
|
unless `git remote`.match(/ruby\-core/)
|
||||||
`git remote add ruby-core git@github.com:ruby/ruby.git`
|
`git remote add ruby-core git@github.com:ruby/ruby.git`
|
||||||
`git fetch ruby-core`
|
`git fetch ruby-core --no-tags`
|
||||||
`git co ruby-core/trunk`
|
`git co ruby-core/trunk`
|
||||||
`git branch ruby-core`
|
`git branch ruby-core`
|
||||||
end
|
end
|
||||||
`git co ruby-core`
|
`git co ruby-core`
|
||||||
`git fetch ruby-core trunk`
|
`git fetch ruby-core trunk --no-tags`
|
||||||
`git rebase ruby-core/trunk`
|
`git rebase ruby-core/trunk`
|
||||||
`git co master`
|
`git co master`
|
||||||
`git stash`
|
`git stash`
|
||||||
|
|
Loading…
Reference in a new issue