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コマンド

Posted at

git init
リポジトリを作成し、Gitのバージョン管理下に置きます。

git status
リポジトリを作成し、commit-tutorial/をGitのバージョン管理下に置きます。

git add
ワークツリーから変更箇所をステージしてインデックスに移動させる

git commit
コミット、つまりバージョンを作る

git log
現在コミットした履歴を確認

git diff
前回のコミットと、今回変更したファイルの差分を抽出

-mオプションを使用してコミットメッセージを直接入力
git commit -m ""

インデックスとローカルリポジトリの基準コミットとの差分
git diff --cached

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?