2010-01-11から1日間の記事一覧

リモートリポジトリをあとから作る

cd remote-repos-path git init --bare --shared=true cd local-repos-path git remote add origin remote-repos-path git config branch.master.merge refs/heads/master git config branch.master.remote origin git push origin master git pull 参考リン…

git on cygwin

cygwin 1.7.1 で UTF-8 対応記念的な、cygwin と git 辺りのメモ。 cygwin 環境変数を CYGWIN="binmode tty" (tty は gitk で問題がでるとかでないとか?) git ~/.gitconfig core の辺りは面倒ごとになりやすいので重要 [user] name = anekos email = anekos…