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 5 years have passed since last update.

これだけは覚えておきたいgitコマンド

Posted at

毎年、新人や新規参画メンバが入ってくるタイミングで苦労しています。
いっそのこと「これだけ覚えとけ」ってやつをまとめることにしました。

前提

  • 参画メンバはgitを初めて使う人たち
  • GitLab
  • ブランチ戦略はgit-flowを採用
  • ブランチ作成はgitlabのissueからCreate merge requestで作成

コマンド

リモートリポジトリをローカル(自分のPC)に複製する。

git clone {リポジトリURL} 

リモートのブランチをチェックアウト

git checkout -b {ローカルブランチ名} origin/{リモートブランチ名}

作成したファイルを索引(コミット対象)に追加する

# ファイルを指定して追加
git add {ファイルパス}
# 一括で追加
git add .
# ワイルドカードも可能
git add *.java

変更をコミットする。

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

ローカルでの変更をリモートリポジトリへ反映する

git push
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?