How do I remove multiple files from a GIT repo that have already been deleted from disk?

3 replies
  • WEB DESIGN
  • |
How do I remove multiple files from a GIT repo that have already been deleted from disk?
#deleted #disk #files #git #multiple #remove #repo
  • Profile picture of the author AboutTown
    You can commit the changes to your repo on your disk with 'git -commit'. If you have a remote repo, on github for example, you can apply the changes there too with 'git -push' after committing the changes.
    {{ DiscussionBoard.errors[10312763].message }}
  • Profile picture of the author JerryEdison3289
    I also want to delete several files from a GIT repo
    Signature
    Explaindio Video FX Review
    Explaindio Video FX Transforms Any Mediocre Looking Video Into An Eye Catching Blockbuster That Skyrockets Conversion From Viewers To Subscribers And Buyers.
    {{ DiscussionBoard.errors[10313052].message }}
    • Profile picture of the author AboutTown
      Originally Posted by JerryEdison3289 View Post

      I also want to delete several files from a GIT repo
      If you delete the files from your disk and then run git - commit this should be all you need to do. As mentioned you may need to push the changes to a remote repository if you use github or another git server.
      {{ DiscussionBoard.errors[10313194].message }}

Trending Topics