[前][次][番号順一覧][スレッド一覧]

ruby-changes:57153

From: Hiroshi <ko1@a...>
Date: Sun, 18 Aug 2019 18:09:30 +0900 (JST)
Subject: [ruby-changes:57153] Hiroshi SHIBATA: 9132153930 (master): Ignore tags on default gems from ruby core repository.

https://git.ruby-lang.org/ruby.git/commit/?id=9132153930

From 9132153930b88b5ffeb95d42081c05d5eceb2d90 Mon Sep 17 00:00:00 2001
From: Hiroshi SHIBATA <hsbt@r...>
Date: Sun, 18 Aug 2019 17:40:01 +0900
Subject: Ignore tags on default gems from ruby core repository.


diff --git a/tool/sync_default_gems.rb b/tool/sync_default_gems.rb
index dc5c9ba..10f5df3 100644
--- a/tool/sync_default_gems.rb
+++ b/tool/sync_default_gems.rb
@@ -327,12 +327,12 @@ def update_default_gems(gem) https://github.com/ruby/ruby/blob/trunk/tool/sync_default_gems.rb#L327
   Dir.chdir("../../#{author}/#{repository}") do
     unless `git remote`.match(/ruby\-core/)
       `git remote add ruby-core git@g...:ruby/ruby.git`
-      `git fetch ruby-core`
+      `git fetch ruby-core --no-tags`
       `git co ruby-core/trunk`
       `git branch ruby-core`
     end
     `git co ruby-core`
-    `git fetch ruby-core trunk`
+    `git fetch ruby-core trunk --no-tags`
     `git rebase ruby-core/trunk`
     `git co master`
     `git stash`
-- 
cgit v0.10.2


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]