Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
mruby
Commits
a562a9aa
Unverified
Commit
a562a9aa
authored
Dec 22, 2019
by
Yukihiro "Matz" Matsumoto
Committed by
GitHub
Dec 22, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4899 from dearblue/build-git
Use `git checkout` instead of `git reset`
parents
0bd3a67d
f08d9b28
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
10 deletions
+15
-10
lib/mruby/build/command.rb
lib/mruby/build/command.rb
+9
-3
lib/mruby/build/load_gems.rb
lib/mruby/build/load_gems.rb
+6
-7
No files found.
lib/mruby/build/command.rb
View file @
a562a9aa
...
...
@@ -279,7 +279,7 @@ module MRuby
class
Command::Git
<
Command
attr_accessor
:flags
attr_accessor
:clone_options
,
:pull_options
,
:checkout_options
,
:reset_options
attr_accessor
:clone_options
,
:pull_options
,
:checkout_options
,
:
checkout_detach_options
,
:
reset_options
def
initialize
(
build
)
super
...
...
@@ -288,6 +288,7 @@ module MRuby
@clone_options
=
"clone %{flags} %{url} %{dir}"
@pull_options
=
"--git-dir %{repo_dir}/.git --work-tree %{repo_dir} pull"
@checkout_options
=
"--git-dir %{repo_dir}/.git --work-tree %{repo_dir} checkout %{checksum_hash}"
@checkout_detach_options
=
"--git-dir %{repo_dir}/.git --work-tree %{repo_dir} checkout --detach %{checksum_hash}"
@reset_options
=
"--git-dir %{repo_dir}/.git --work-tree %{repo_dir} reset %{checksum_hash}"
end
...
...
@@ -302,12 +303,17 @@ module MRuby
end
def
run_checkout
(
dir
,
checksum_hash
)
_pp
"GIT CHECKOUT"
,
checksum_hash
_pp
"GIT CHECKOUT"
,
dir
,
checksum_hash
_run
checkout_options
,
{
:checksum_hash
=>
checksum_hash
,
:repo_dir
=>
shellquote
(
dir
)
}
end
def
run_checkout_detach
(
dir
,
checksum_hash
)
_pp
"GIT CHECKOUT DETACH"
,
dir
,
checksum_hash
_run
checkout_detach_options
,
{
:checksum_hash
=>
checksum_hash
,
:repo_dir
=>
shellquote
(
dir
)
}
end
def
run_reset_hard
(
dir
,
checksum_hash
)
_pp
"GIT RESET"
,
checksum_hash
_pp
"GIT RESET"
,
dir
,
checksum_hash
_run
reset_options
,
{
:checksum_hash
=>
checksum_hash
,
:repo_dir
=>
shellquote
(
dir
)
}
end
...
...
lib/mruby/build/load_gems.rb
View file @
a562a9aa
...
...
@@ -86,14 +86,13 @@ module MRuby
if
File
.
exist?
(
gemdir
)
if
$pull_gems
git
.
run_pull
gemdir
,
url
# Jump to the top of the branch
git
.
run_checkout
(
gemdir
,
branch
)
git
.
run_
reset_hard
gemdir
,
"origin/
#{
branch
}
"
git
.
run_checkout
gemdir
,
branch
git
.
run_
pull
gemdir
,
url
elsif
params
[
:checksum_hash
]
git
.
run_
reset_hard
(
gemdir
,
params
[
:checksum_hash
])
git
.
run_
checkout_detach
gemdir
,
params
[
:checksum_hash
]
elsif
lock
git
.
run_
reset_hard
(
gemdir
,
lock
[
'commit'
])
git
.
run_
checkout_detach
gemdir
,
lock
[
'commit'
]
end
else
options
=
[
params
[
:options
]]
||
[]
...
...
@@ -105,9 +104,9 @@ module MRuby
# Jump to the specified commit
if
params
[
:checksum_hash
]
git
.
run_
reset_hard
gemdir
,
params
[
:checksum_hash
]
git
.
run_
checkout_detach
gemdir
,
params
[
:checksum_hash
]
elsif
lock
git
.
run_
reset_hard
gemdir
,
lock
[
'commit'
]
git
.
run_
checkout_detach
gemdir
,
lock
[
'commit'
]
end
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment