0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

git: 一般的なコマンド

Last updated at Posted at 2020-03-01

設定ファイル:

.git
.gitignore

コマンド:

  1. git config --global user.name "USER NAME" : ユーザー名の設定
  2. git config --global user.email "EMAIL ADDRESS" : ユーザーの電子メールアドレス
  3. git config -l : 設定確認
  4. git init : フォルダをgitの作業フォルダへ初期化
  5. git status : 今の編集状況を確認
  6. git diff : ワーキングディレクトリ内の編集の差分確認
  7. git diff --cached : ステージングエリア内の編集の差分確認
  8. git checkout -- {filename} : 編集のロールバック
  9. git add {filename} : ステージングエリアへ追加
  10. git commit -m "MESSAGE" : リポジトリへ移動
  11. git log -- stat : 履歴確認
  12. git branch : ブランチリスト表示
  13. git branch {BRANCHNAME} : 新規ブランチを作成
  14. git checkout {BRANCHANKE} : 希望のブランチへ移動
  15. git merge {ReferredBranch} : 別のブランチからマージする
  16. git branch -d {BRANCHNAME} : ブランチを削除
  17. git remote add {repo name} {repo path} : リモートリポジトリの登録
  18. git remote rm {repo name} : リモートリポジトリの削除
  19. git push {repo name} {branchname} : ブランチの内容をリモートリポジトリにアップロード
  20. git clone {repo path} {working directory} : リポジトリの内容をワーキングディレクトリへコピー
  21. 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}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?