0
1

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のよく使うコマンド

Last updated at Posted at 2021-01-05

#Gitコマンド
業務中によく使うコマンドをまとめてみました。

###クローン
任意のフォルダ名(task1)配下にクローンする

git clone -b develop git@github.com:XXXX/YYYY.git ~/github/task1

###ブランチの確認

git branch

###ブランチの新規作成

git branch task1(ブランチ名)

###ブランチの切り替え

git checkout task1(ブランチ名)

###変更したファイルの状況確認

git status

###指定したファイルの差分を表示

git diff ~/github/task1/lib/screens/XXXX.dart

###変更内容をインデックスに追加する

git add  ~/github/task1/lib/screens/XXXX.dart

###ローカルブランチにコミット

git commit -m 'コミット内容を記載'

###リモートブランチtask1にプッシュ

git push -u origin task1

##まとめ
よく使うコマンドだけど、よくわからなくなり毎回調べていたので忘れないように!!

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?