6
10

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】git 操作メモ

Last updated at Posted at 2018-10-31

#git操作フロー
gitlabを用いた運用・使用するGitの操作コマンドのメモ。

##通常の操作方法

###作業ディレクトリの移動


cd [プロジェクトのパス]

該当のプロジェクトのフォルダに移動する。

###作業用に新たにブランチを作成


git checkout -b [ブランチ名]

testブランチを作成して、testブランチに移動する。

###変更ファイルがあるか確認

git status

###変更ファイルの差分を確認

git diff

###変更をコミット
・git add

git add [ファイル名]

・git commit

git commit -m "[コメント]"

###masterから最新状態を反映
・masterブランチに移動

git checkout master

・最新状態を取込

git pull origin master

・作業ブランチに移動

git checkout [ブランチ名]

・最新状態を作業ブランチに反映

git merge master

###変更を反映

git push origin [ブランチ名]

###変更をmasterにmerge
・gitlabを開いてマージリクエストを申請 ⇒ マージリクエストを承認 ⇒ 完了

6
10
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
6
10

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?