-2

How do I get rid of these two files?

On branch master
Your branch is up-to-date with 'origin/master'.
Changes to be committed:
  (use "git reset HEAD <file>..." to unstage)

    deleted:    public_html/images/summits/StrongerThanYouThink.jpg
    deleted:    public_html/images/summits/StrongerThanYouThinkc6.jpg
PioneerMan
  • 303
  • 4
  • 12
  • 1
    They'll be gone from the working directory and the index as soon as you `commit`. –  Feb 09 '17 at 21:44

1 Answers1

2

Those files are listed in the section "Changes to be committed". After you run git commit, those files will be deleted from the HEAD of your repository and git status will no longer show them as staged.

Greg Hewgill
  • 951,095
  • 183
  • 1,149
  • 1,285