0

I'm tying to remove unit tests from Github in Xcode .

I removed unit tests and commit and push but the unit tests folder in Github still there , Now i know that unit tests is important but it's college project and i don't want the professors to ask about it .

So how to remove it from Github ? , And if you know any great tutorials about Unit Tests i'll be thankful .

Update:

When i remove the unit tests from target automatically Xcode removed the unit tests folders but when i close my project and reopened the unit tests folder was still there but not in the target so i simply remove the folders.

Community
  • 1
  • 1
mazen
  • 438
  • 1
  • 4
  • 13
  • Possible duplicate of [How to remove a directory from git repository?](https://stackoverflow.com/questions/6313126/how-to-remove-a-directory-from-git-repository) – Raj Sharma Nov 29 '18 at 08:33

1 Answers1

1
  • You'll need to remove corresponded folders from your project directory, and then commit-push all changes using the following commands:

    • git add .

    • git commit -m "YOUR_MESSAGE"

    • git push
  • Lynda tutorial series is a great way to achieve different skills in iOS development. Check the following link: Lynda TDD

Hassan Shahbazi
  • 1,543
  • 9
  • 26