LoginSignup
0
0

More than 1 year has passed since last update.

初歩的なgitコマンド

Last updated at Posted at 2021-10-28

初期設定

以下を設定することでコミットを行った際に、誰が行ったコミットか分かるようになる。

$ git config --global user.name "ユーザー名"
$ git config --global user.email "メールアドレス"

変更内容確認

$ git status

差分

$ git diff <ファイル名>

ファイルの追加

$ git add <ファイル名>

追加したファイルをコミット

$ git commit -m "変更内容"

プッシュ

$ 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