Skip to content
This repository was archived by the owner on Aug 5, 2019. It is now read-only.

Better explanations when IsDirty is true.

Choose a tag to compare

@olivier-spinelli olivier-spinelli released this 05 Feb 10:51
· 336 commits to master since this release

When the working folder is dirty, SGV now computes and displays:

  • The number of files that are added, missing, removed or staged.
  • If none of the previous exist, the modified files are collected:
    • If RepositoryOptions.IgnoreModifiedFileFullProcess is false, only the the first modified file is collected (and the process stops).
    • If IgnoreModifiedFileFullProcess is true (this is used by DNXSolution to be able to update all the versions in all the project.json files), the 10 first modified files are collected (and remaining number of files is computed).

This should help detecting CR/LF vs. LF issues (see libgit2/libgit2sharp#1244 for instance).