4
4

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 5 years have passed since last update.

gitで差分の作成

Last updated at Posted at 2014-06-10

1回目

  • cd そのフォルダ
  • git initでリポジトリ作成
  • touch .gitignore (ゴミファイル・パスワードが記載されているファイル等を除外するためのファイルを作成)
  • echo 入れたくないファイル名 >> .gitignore
  • echo .gitignore >> .gitignore
  • git add .でインデックスに全ファイルを読み込む
  • git commitでリポジトリに確定する

2回目以降

  • cd そのフォルダ
  • git statusで変更されたファイル・追加ファイルを確認する
  • git add -uでインデックスに変更されたファイルを読み込む
  • (新規追加ファイルがあったら)git add ファイル名でインデックスに追加ファイルを読み込む
  • git statusで確認(ファイルが緑色で表示される)
  • git commit (新規)もしくは git commit --amend(前回に上書き:1日に何回かやったりする)

その他

  • git logでcommit履歴が出る
  • git diff 前回の5文字 今回の5文字で差分が出る
  • git diff --stat 前回の5文字 今回の5文字で変更したファイル一覧が出る
4
4
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
4
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?