local remote repository
ローカル環境のみでgitリポジトリを作り、履歴管理やブランチ操作を行いたい
-
dirname.git がリモートリポジトリの慣例
$ git init --bare --shared
- bareは作業ファイルをもたないpushされるための専用のリポジトリという意味
- sharedはこのリポジトリを共有可能にするためのオプション。これがないとpushしてもファイルを作成できない。
allow force push
remote: error: denying non-fast-forward
- local.git/config
詳しくは ↓ の Server Configuration
https://git-scm.com/book/en/v2/Customizing-Git-Git-Configuration
use template
リモートリポジトリ のテンプレを使うことで設定したのを使い回せる
- コマンドだと
[--template=<template_directory>]