Jegan
Jegan

Reputation: 1237

Auto select new items in pending changes view

I am using the Plastic scm version 5.4.16.743, and I am using the VS2015 IDE for development. Since I have upgraded to this version of plastic, every time a new file is add in VS, plastic adds that file to the "Added and Private Items" list but it does not auto select the items to be checked in by default (As it says in plastic documentation).

Does anybody know why plastic doesn't auto select the newly added items for check in as it before?

Is there a way to turn this feature back on?

Upvotes: 2

Views: 147

Answers (1)

Daniel Peñalba
Daniel Peñalba

Reputation: 31857

The Visual Studio package has two pending changes views:

enter image description here

  • Pending changes under solution: It displays only those items that are under the Visual Studio Solution. In this view, added and private items are automatically marked (checked) to be added to source control.
  • Pending changes under workspace: It diplays all changed and private items in your whole workspace. In this view, added and private items are not marked (checked) to be added automatically, because you could have thousands if you did not configured your ignored filter.

So, when working inside Visual Studio, I recommend you to use always the pending changes under Solution to work flawlessly.

Upvotes: 1

Related Questions