tags:

views:

20

answers:

1

I'm Using Git Extensions GUI for GIT on Windows.

With a new project with some hundred files, not all new files are shown for a commit, I have to to multiple Commits to get all the files.. is there somewhere a option, a limit to set this behaviour? (yes, I know .gitignore, the files are not ignored, but only shown in chunks of ca. 20 files)

It's Git Extensions 1.92 with Git 1.6.5.1

A: 

This doesn't show up in the Git Extension TODO list (Visual Studio Git Extension).
Or in the issue page (for the Windows Explorer Git Extension)

If there is such a limit, revert to the shell: if a git status displays the right files to be committed, a 'git commit -A -m "..."' will commit every files for sure, not just the first 200.

VonC