設定ファイル:
.git
.gitignore
コマンド:
- git config --global user.name "USER NAME" : ユーザー名の設定
- git config --global user.email "EMAIL ADDRESS" : ユーザーの電子メールアドレス
- git config -l : 設定確認
- git init : フォルダをgitの作業フォルダへ初期化
- git status : 今の編集状況を確認
- git diff : ワーキングディレクトリ内の編集の差分確認
- git diff --cached : ステージングエリア内の編集の差分確認
- git checkout -- {filename} : 編集のロールバック
- git add {filename} : ステージングエリアへ追加
- git commit -m "MESSAGE" : リポジトリへ移動
- git log -- stat : 履歴確認
- git branch : ブランチリスト表示
- git branch {BRANCHNAME} : 新規ブランチを作成
- git checkout {BRANCHANKE} : 希望のブランチへ移動
- git merge {ReferredBranch} : 別のブランチからマージする
- git branch -d {BRANCHNAME} : ブランチを削除
- git remote add {repo name} {repo path} : リモートリポジトリの登録
- git remote rm {repo name} : リモートリポジトリの削除
- git push {repo name} {branchname} : ブランチの内容をリモートリポジトリにアップロード
- git clone {repo path} {working directory} : リポジトリの内容をワーキングディレクトリへコピー
- git pull {repo name} {branchname} : リポジトリの内容をブランチへダウンロード
git config --global user.name "Jon Star"
git config --global user.email "xxxxx.aaa.com"
git config -l
git init
git diff
git diff --cached
git status
git checkout -- {filename}
git add {filename}
git commit -m "MESSAGE"
git log --stat
git branch
git branch {BRANCHNAME}
git checkout {BRANCHNAME}
git merge {ReferredBranch}
git branch -d {BranchName}
git remote add {repo name} {repo path}
git remote rm {repo name}
git push {repo name} {branchname}
git clone {repo path} {working directory}
git pull {repo name} {branchname}