3

I am unfamiliar with Git commands. How do I delete files that are already on a Bitbucket repository? I want to delete some files so the next time when someone pulls, we can work on a project without having those extra files.

bryan151
  • 37
  • 1
  • 1
  • 9

2 Answers2

3

You need to create a commit that removes this file:

git rm /path/to/file
git commit

And then just push it as you would with any other commit.

Mureinik
  • 277,661
  • 50
  • 283
  • 320
1

When your commiting your code use $ git add -u to add the files you deleted while working on the repo just like you would use git add . to add new files and changes

Covered a bit more in this question/answer How do I commit all deleted files in Git?

Community
  • 1
  • 1
Andrew Font
  • 1,155
  • 3
  • 16
  • 36