Skip to main content

Staging ↔ list of files/code to add to next Commit

aka Staging-Area

Tracked

Untracked

References

  1. add ↔ to add file/dir to Staging

  2. status ↔ to show state of Git Repo; list files in Staging/untracked/Commit History

  3. git add . ↔ to add all files in Working Dir to Staging

  4. Untracked ↔ of file/dir to ignore & excl from Staging

  5. commit ↔ to create new Commit with Diff added in Staging

  6. Staging Area ↔ panel to Track list of dir/files for Staging

  7. reset ↔ to remove files from Staging (no modify/delete)

  8. git commit --amend --no-edit ↔ to fix & update previous Commit with extra Staging file (after git add .)

  9. index.git binary file with Staging info

  10. Source Control Panel ↔ to show Staging changes with Diff Editor

  11. git reset --soft HEAD~1 ↔ to undo Commit & keep Diff in Staging index