Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
my2to3
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
nexedi
my2to3
Commits
6626dff6
Commit
6626dff6
authored
Jun 08, 2020
by
Bryton Lacquement
🚪
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New checker: git_diff_numstat
parent
39a46687
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
0 deletions
+17
-0
check/git_diff_numstat
check/git_diff_numstat
+17
-0
No files found.
check/git_diff_numstat
0 → 100755
View file @
6626dff6
#!/bin/bash
# We want to keep the nodes on their original line when applying a fixer, i.e.
# - Do not add / delete lines
# - Do not move the nodes from one line to another
#
# After applying a fixer, this script is used to manually check the difference
# between the number of lines added and deleted. If this value is other than 0,
# it means that the fixer does not handle certain cases well, i.e. the
# implementation of its `transform` method is not good enough.
cd
$1
git diff
--numstat
|
while
read
insertions deletions file
;
do
if
[
$insertions
-ne
$deletions
]
;
then
echo
$file
$insertions
+
$deletions
-
fi
done
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