1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

git co is alias of git checkout

This commit is contained in:
Hiroshi SHIBATA 2020-04-25 12:15:01 +09:00
parent 42ac3f79ba
commit c2700379ad
No known key found for this signature in database
GPG key ID: F9CF13417264FAC2

View file

@ -446,12 +446,12 @@ def update_default_gems(gem)
end
`git fetch ruby-core master --no-tags`
unless `git branch`.match(/ruby\-core/)
`git co ruby-core/master`
`git checkout ruby-core/master`
`git branch ruby-core`
end
`git co ruby-core`
`git checkout ruby-core`
`git rebase ruby-core/master`
`git co master`
`git checkout master`
`git fetch origin master`
`git rebase origin/master`
end