[HOME]: [Mac OS X]: [MacPython]: [Emacs]: [生存報告記]: [MacEmacs JP Project]: [NTEmacs JP Project]:

概要

公式サイト

http://git-scm.com/

関連サイト

インストール

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

プラグイン

クライアントツール

CUI

Emacs

WEBツール

参考サイト

A Visual Git Reference

Subversionのリポジトリ下でgitを使ってみよう : アシアルブログ


CategoryProgramingTools

紹介マニアMoinMoin: Git (last edited 2024-02-12 06:21:07 by sakito)