-
-
Notifications
You must be signed in to change notification settings - Fork 425
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: disable diff detection for renames and copies (#3330)
* fix: disable diff detection for renames and copies * fix format
- Loading branch information
1 parent
f4d66f4
commit d121e62
Showing
4 changed files
with
23 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,14 +19,17 @@ git clone git://127.0.0.1/repos/test-base.git /git/local/repos/test-base | |
cd /git/local/repos/test-base | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Your Name" | ||
echo "#test-base" > README.md | ||
echo "#test-base" > README_TEMP.md | ||
git add . | ||
git commit -m "initial commit" | ||
git commit --allow-empty -m "empty commit for tests" | ||
echo "#test-base :sparkles:" > README.md | ||
echo "#test-base :sparkles:" > README_TEMP.md | ||
git add . | ||
git commit -m "add sparkles" -m "Change description: | ||
- updates README.md to add sparkles to the title" | ||
- updates README_TEMP.md to add sparkles to the title" | ||
mv README_TEMP.md README.md | ||
git add . | ||
git commit -m "rename readme" | ||
git push -u | ||
git log -1 --pretty=oneline | ||
git config --global --unset user.email | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters