> For the complete documentation index, see [llms.txt](https://frost.gitbook.io/iosbook/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://frost.gitbook.io/iosbook/git-1/git-commands.md).

# Git Commands

1. remove git repository

```
rm -rf .git
```

```
find . -type f | grep -i "\.git" | xargs rm
```
