2012-08-15 :-)
_ [tdiary][git]tDiaryのバージョンアップ方法 (gitを使う) - まちゅダイアリー(2012-08-12)
machu さんが書いてくれたので写経。
% git clone git://github.com/tdiary/tdiary-core.git tdiary % cd tdiary % git checkout -b miwarin
% vim tdiary.conf
% git add tdiary.conf The following paths are ignored by one of your .gitignore files: tdiary.conf Use -f if you really want to add them. fatal: no files added
oh
% cat .gitignore .bundle .htpasswd coverage coverage.* data log tmp rdoc index.rdf tdiary.conf <==== vendor/bundle/ spec/reports doc/*.html .rspec
とりあえず tdiary.conf を削除
再度
% git add tdiary.conf
% git commit -m add [miwarin 89cf3fe] add 1 files changed, 604 insertions(+), 0 deletions(-) create mode 100644 tdiary.conf
% git pull origin master From git://github.com/tdiary/tdiary-core * branch master -> FETCH_HEAD Already up-to-date.
[ツッコミを入れる]