Remove *.orig files from version control #768
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Looking at the changes of last update to version
6.0
oflibsecp256k1
I noticed the file extension of two new added files were.orig
.Considering the context, I assumed these files are the result of the execution of
git mergetool
, and were not intended to be included in the commit initially.Trying to understand if they served another purpose I realized a third orig file was committed with the update of
libsecp256k1
to version4.0
,I checked for any references for these files in the codebase but didn't find any.
I also checked the libsecp256k1 to know if this was something committed in that repository but I confirm is not.
To keep the source code tree clean I removed these files, and also added a new
.gitignore
rule to avoid the inclusion of these files in the future.