github 初めてのリポジトリpushまでの流れ
github
2021/10/22
いつもgithubにリポジトリにコードをあげるのに苦労していたので、メモ書き程度に残しておきたいと思います。
ざっくりとイメージ図
①作業ディレクトリ(自分のPC)からステージングエリアにファイルを追加する
↓ commit
②ステージングエリアからローカルリポジトリにファイルをあげる
↓ push
③ローカルリポジトリから**リモートリポジトリ(github)**に登録する
git init
次に、commitするファイルを追加します。①
//一つずつの時
git add ファイル名
ex:)git add index.html
//一括で上げたい場合
git add -A
実際にcommitしよう②
git commit -m "first commit"
次に、pushする!
git push
これでいいはずだが、こんなエラーが出るはず
ec2-user:~/environment/pictgram (master) $ git push
fatal: No configured push destination.
Either specify the URL from the command-line or configure a remote repository using
git remote add <name> <url>
and then push using the remote name
git push <name>
リモートのリポジトリを指定してねって言われてるので、それをしたらいいだけ!
git remote add origin https://github.com/~~~.git
/*これで指定完了*/
最後にpushする
git push -u origin master
これで完了!!次回からgit push
でできます!!