'Github storage issue in iOS

in my project there is a hidden git file of 1.2 GB can i delete this object folder

find the attached screen shot enter image description here



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