'Github storage issue in iOS
Solution 1:[1]
Git stores the complete history of your files for a project in a special directory (a.k.a. a folder) called a repository, or repo. This repo is usually in a hidden folder called .git
In your project directory .git hidden file denotes that your project directory is under version control.
if you delete .git hidden file then you simply removing version control from your project directory and you lost all tracking of your project directory. So Never ever delete .git file if you want your project directory under version control.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Protocol |

