How to add files to git stage in JetBrains Rider? Is this feature implemented? If it's not implemented then in which window can I look through the staged files which I've staged using some external tool?
[UPD]: The use case is to hold separately files I want to commit and files I don't want to commit at the particular moment. Stash is not the solution because I need all changes to be present. VS has this functionality and it's very convenient. You can stage and unstage any files with a single right mouse button click.
The staging area is an alternative to changelists that @Jura Gorohovsky has mentioned. For those more comfortable with the concept of staging changes on a file-by-file basis like the Visual Studio experience you described, you basically need to do two things:
Ctrl+Alt+S
)There's a ton of other more complex maneuvers (see Reference) but that's the basics.