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を使用した開発の流れ

###リポジトリのクローン
リモートリポジトリからローカルへリポジトリをクローン(複製)する

git clone リポジトリのURL

###ブランチの作成
git branch 作成するブランチ名

ローカルブランチの一覧を確認

git branch

リモートブランチの一覧を確認

git branch -a

###ブランチの切り替え 作成したブランチへ切り替える
git checkout ブランチ名

###実装
実装内容の確認(変更を行ったファイルの確認)

git status

###実装後
変更したファイルをインデックス(ステージング)へ追加する

git add ファイル名

変更を行ったファイル全てを一括でステージングへ追加する場合

git add ./

###コミット

git commit -m"コミットメッセージ"

コミットのログを確認

git log

###リモートへプッシュ

git push origin ブランチ名
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?