LoginSignup
5
2

More than 5 years have passed since last update.

Gitにpush

Last updated at Posted at 2017-05-09

<pushした流れをメモ>

$  git branch -a                 // ブランチの確認
$  git status                    // 変更ファイルの確認
$  git add -A                    // 全部のファイルをあげる
$  git status                    // あがっているか確認
$  git commit -m "コミットメッセージ"  // コミット
$  git status                    // コミットできているか確認
$  git push origin 自分のリポジトリ名 // プッシュ
5
2
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
5
2