Skip to content

Instantly share code, notes, and snippets.

@cnp96
Created June 9, 2020 07:50
Show Gist options
  • Save cnp96/9355b49aacf771cd9077a529a7feb075 to your computer and use it in GitHub Desktop.
Save cnp96/9355b49aacf771cd9077a529a7feb075 to your computer and use it in GitHub Desktop.
Git Stages

One time things

ignored

  • added to .gitignore

untracked

  • any new file
  • track by git add filename/pattern

Mostly used

unstaged

  • being tracked
  • not added to staging (will not be commited)

staged

  • ready to be commited
  • git add
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment