-
Notifications
You must be signed in to change notification settings - Fork 61
Allow ignoring big files (by extension) #45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
57c275b
parse the output of 'git status -z'
ohumbel af6fbcd
improve the doc comment
ohumbel 1b53d58
add a sample for file extensions to be ignored
ohumbel 11690b3
parse the configuration for ignored file extensions
ohumbel 9ee0440
commit actual work
ohumbel 3c1013f
Merge branch 'develop' into bigfiles
ohumbel 0c473bd
Merge remote-tracking branch 'upstream/develop' into bigfiles
ohumbel 940cf92
Merge remote-tracking branch 'upstream/develop' into bigfiles
ohumbel 58fd177
Merge remote-tracking branch 'upstream/develop' into bigfiles
ohumbel e2e62b8
make test green for now, to enable upstream merge
ohumbel 0cdc7f7
Commiter.addandcommit has now one parameter again;
ohumbel 051b5e0
Merge remote-tracking branch 'upstream/develop' into bigfiles
ohumbel fd08f0d
Merge branch 'develop' into bigfiles
ohumbel 8a7697d
Merge branch 'develop' into bigfiles
ohumbel 19af148
fix parsing of IgnoreFileExtensions
ohumbel 451a5ed
gain a bit of performance if no extensions are to be ignored
ohumbel 0da8d0f
Merge branch 'develop' into bigfiles
ohumbel 4e904ec
prepare for handling directory and file additions the same way (after…
ohumbel ba5f776
out of despair: normalize line endings
ohumbel e3396d0
Merge branch 'develop' into bigfiles
ohumbel 4e9bec5
Merge branch 'develop' into bigfiles
ohumbel e84d393
Merge branch 'develop' into bigfiles
ohumbel 0f28459
make test green by using semicolon as separator
ohumbel 753b13d
Merge branch 'develop' into bigfiles
ohumbel 5c58164
Merge branch 'develop' into bigfiles
ohumbel 74b4893
Merge branch 'develop' into bigfiles
ohumbel 99019e2
Merge branch 'develop' into bigfiles
ohumbel 5bb03f1
filterignore() now handles files in new directories, too
ohumbel a157e91
move tests from test_ignore.py to the right place
ohumbel c341ca2
integral test for reading config.ini
ohumbel 926780f
integral test for filterignore()
ohumbel 16a6fc0
unify parsing of 'git status -z' output
ohumbel f9fcbc7
allow filtering the output of 'git status -z' with a prefix
ohumbel File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| [General] | ||
| Repo=https://rtc.supercompany.com/ccm/ | ||
| User=superuser | ||
| Password=supersecret | ||
| GIT-Reponame = super.git | ||
| WorkspaceName=Superworkspace | ||
| Directory = /tmp/migration | ||
| useExistingWorkspace = True | ||
| ScmCommand = lscm | ||
| encoding = UTF-8 | ||
|
|
||
| [Migration] | ||
| StreamToMigrate = Superstream | ||
| PreviousStream = Previousstream | ||
| InitialBaseLines = Component1=Baseline1, Component2=Baseline2 | ||
| UseProvidedHistory = True | ||
| UseAutomaticConflictResolution = True | ||
|
|
||
| [Miscellaneous] | ||
| LogShellCommands = True | ||
| IgnoreFileExtensions = .zip; .jar |
Binary file not shown.
This file contains hidden or 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 hidden or 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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
according to the man-page of git status --porcelain is implied by -z. Therefore --porcelain is not necessary.