mirror of
https://github.com/mike-rambil/Advanced-Git.git
synced 2025-12-30 14:09:30 -06:00
461 B
461 B
git init --bare
Category
Repository Management
Initialize a bare repository, typically used for remote repositories.
Command
git init --bare my-repo.git
Examples
- Create a bare repository for collaboration.
git init --bare my-repo.git
Steps
- Run
git init --bare my-repo.gitto create a bare repository.
Tags
init, bare, repository
Author
mike-rambil
Last Updated
2024-06-10