Staging
↔ list of files/code to add to next Commit
aka Staging-Area
Tracked
Untracked
References
status
↔ to show state of Git Repo; list files in Staging/untracked/Commit Historygit add .
↔ toadd
all files in Working Dir to StagingStaging Area
↔ panel to Track list of dir/files for Staginggit commit --amend --no-edit
↔ to fix & update previous Commit with extra Staging file (aftergit add .
)Source Control Panel
↔ to show Staging changes with Diff Editorgit reset --soft HEAD~1
↔ to undo Commit & keep Diff in Staging index