私はCodeIgniterサイトにいくつかのファイルを持っていますが、それらをリポジトリに入れたいのですが、変更を追跡しません。
たとえば、このフレームワークの新しいインストールを新しいクライアントに展開し、次のファイルをダウンロードして(デフォルト値はCHANGEME)、このクライアントに固有の変更(データベースの資格情報、電子メールアドレス情報、カスタムCSS)。
// the production config files i want the files but they need to be updated to specific client needs
application/config/production/config.php
application/config/production/database.php
application/config/production/tank_auth.php
// index page, defines the environment (production|development)
/index.php
// all of the css/js cache (keep the folder but not the contents)
/assets/cache/*
// production user based styling (color, fonts etc) needs to be updated specific to client needs
/assets/frontend/css/user/frontend-user.css
現在私が走れば
git clone git@github.com:user123/myRepo.git httpdocs
上記のファイルを編集すると、すべてが素晴らしいです。修正プログラムまたはパッチをリリースして実行するまでgit pull
。その後、すべての変更が上書きされます。