LoginSignup
1
1

More than 3 years have passed since last update.

【Mac】git add / commit / push 手順

Posted at

index.htmlをgit add/ commit / pushする手順をご紹介します。

①更新したファイルに対してgit addを実行し、エラーなどが表示されないことを確認する。

$ git add /Users/user_name/clone/www.domain_name.jp/index.html

② git commit -m を実行し、エラーなどが表示されないことを確認する。

$ git commit -m "/Users/user_name/clone/www.domain_name.jp/index.html”

③秘密鍵を登録する。

$ ssh-add -K ~/.ssh/codecommit_rsa

④git pushする。

$ git push

以上。

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