git ファイルの追加

プロジェクトディレクトリ以下にファイルを追加した時は以下の操作でリモートのレポジトリに反映する

ファイルをインデックスに追加

git add .

特定のファイルのみを追加

git add ファイル名

インデックスに追加されたファイルをローカルレポジトリにcommit

git commit -m "コメント"

リモートレポジトリに反映

git push origin master
Enter passphrase for key '/c/Users/tarumi/.ssh/id_rsa':SSLキーのパスワードを入力