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?

Git初学者による学習部屋(絶賛編集中)

Last updated at Posted at 2024-12-11

Gitコマンド

Gitリポジトリを作成する [git init]

// 対象のディレクトリに移動
$ cd <対象ディレクトリパス>

// .gitリポジトリを作成する
$ git init

GitHubプロジェクトをクローンする [git clone]

// クローン(コピー)を作成する
$ git clone <リポジトリ名>

// 例
$ git clone https://github.com/atom/atom.git

変更をステージに追加する [git add]

// ステージに追加する
$ git add <ファイル名>
$ git add <ディレクトリ名>

// 全ファイルをステージに追加する
$ git add .

変更をコミットする [git commit]

// コミットする(メッセージを入力するエディタが開く)
$ git commit
// メッセージ付きでコミットする
$ git commit -m "<メッセージ>"
// 変更内容を確認してコミットする
$ git commit -v

// 例
$ git commit
// エディタが開いたら1行目に「initial commit」と入力後、
// 保存してエディタを閉じる
// ※コミットしない場合は、変更せずにエディタを閉じる。

現在の変更状況を確認する [git status]

// 変更されたファイルを確認する
// ワークツリー⇔ステージ間、ステージ⇔リポジトリ間
$ git status

// 例
$ git status
On branch master
Changes not staged for commit:
  (use "git add <file>..." to update what will be committed)
  (use "git restore <file>..." to discard changes in working directory)
        modified:   index.html

no changes added to commit (use "git add" and/or "git commit -a")

Git利用具体例

GitHubからクローンして開発する

// クローン(コピー)を作成する
$ git clone <リポジトリ名>

// ソースコードを編集する

// 全ファイルをステージに追加する
$ git add .

// コミットする(メッセージを入力するエディタが開く)
$ git commit
// ※コミットしない場合は、変更せずにエディタを閉じる。
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?