1
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 超基本の4つのコマンド操作

Posted at

#【Git 超基本の4つのコマンド操作】

ポートフォリオ作成中に毎日のように使っていたらいつのまにか覚えていました。
今後のことも考えて、自分の備忘録として残しておきます。

##4つの流れと意味を抑える。

###1、現在のブランチを確認する。

Git
git branch

複数ブランチを用いて、開発しているとブランチの切り替えが誤っているかもしれない。
何事も念の為に確認は大事。

###2、新規ファイルの追加、既存ファイルの変更をステージングする。

Git
git add .

git add の後に . を付けて、
カレントディレクトリ以下を再帰的にaddする。
addするときは、pwdでカレンとディレクトリの確認をすると尚良しかも。

###3、変更内容をローカルリポジトリにコミットする。

Git
git commit -m 'メッセージ'

コミットメッセージはコミット内容を簡潔にわかりやすく書くようにする。
特にチーム開発をしている時は、より意識する必要がある。
同じチームメンバーの方への気遣いは大事。

###4、GitHubのリモートリポジトリにプッシュ(反映)する。

Git
git push origin < ブランチ名 >

##おわりに。

自分が過去にGit, GitHubの学習をまとめたQiitaの記事。

Gitの基本
GitHub チーム開発の流れ
GitHub リモートリポジトリ【基礎】
GitHub ブランチとマージについて
GitHub リベース スタッシュ タグ

1
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
1
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?