Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
picodata
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
core
picodata
Merge requests
!1113
chore: use shlex in apply patches script to please gamayun
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
chore: use shlex in apply patches script to please gamayun
dkr/use-shlex
into
master
Overview
0
Commits
1
Pipelines
11
Changes
1
Merged
Dmitry Rodionov
requested to merge
dkr/use-shlex
into
master
8 months ago
Overview
0
Commits
1
Pipelines
11
Changes
1
Expand
Summary
chore: use shlex in apply patches script to please gamayun
Cherry-pick to: none
Docs follow-up: not necessary
0
0
Merge request reports
Compare
master
version 7
e6a44f50
7 months ago
version 6
009cc83b
7 months ago
version 5
afa7fec2
7 months ago
version 4
9fc2ff60
8 months ago
version 3
ca852692
8 months ago
version 2
6fc7e1cd
8 months ago
version 1
38eaa48d
8 months ago
master (base)
and
latest version
latest version
150ca054
1 commit,
7 months ago
version 7
e6a44f50
1 commit,
7 months ago
version 6
009cc83b
1 commit,
7 months ago
version 5
afa7fec2
1 commit,
7 months ago
version 4
9fc2ff60
1 commit,
8 months ago
version 3
ca852692
1 commit,
8 months ago
version 2
6fc7e1cd
1 commit,
8 months ago
version 1
38eaa48d
1 commit,
8 months ago
1 file
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
tools/prepare_source_tree_for_stat_analysis.py
+
2
−
2
Options
@@ -5,6 +5,7 @@ from contextlib import contextmanager
import
glob
import
os
from
pathlib
import
Path
import
shlex
import
subprocess
# nosec
import
sys
@@ -102,8 +103,7 @@ def apply_patches():
def
restore
():
subprocess
.
check_call
(
"
git submodule foreach --recursive git restore .
"
,
shell
=
True
,
shlex
.
split
(
"
git submodule foreach --recursive git restore .
"
)
)
Loading