概要
公式サイト
関連サイト
インストール
http://code.google.com/p/git-osx-installer/
設定
$ git config --global user.name 'your name' $ git config --global user.email you@example.com
~/.gitconfig
[user] name = your name email = you@example.com
設定の確認
git config --global --list
利用方法
git tag
タグ一覧
git tag
タグ詳細
git show タグ名
現在の場所にタグ付与
git tag -a タグ名 -m 'タグコメント'
後から付与する場合
git tag -a タグ名 -m 'タグコメント' コミット名やbranch名
タグのpush
git push origin タグ名
submodule
追加
git submodule add https:...(等)
削除
追加したsubmoduleを削除する場合
git submodule deinit -f <submodule> git rm -f <submodule> rm -rf .git/modules/<submodule>
コマンド追加
gitflow
gitflow:本家git flow は2012年9月移行メンテされていない
gitflow-avh:git flow フォーク版
プラグイン
クライアントツール
CUI
Emacs
WEBツール
参考サイト
Subversionのリポジトリ下でgitを使ってみよう : アシアルブログ