はじめに
Windows Github APPより、ときにUBUNTUでリポジトリをプッシュしたほうが都合がよいので、至って簡単にできたのでメモしておく。
プッシュ手順
1. https://github.com/github_idでNEWリポジトリを新規作成しておく。
2. コマンドラインで新しいリポジトリをプッシュする。
cd reposity_folder git init git add . git commit -m "first commit" git branch -M main git remote add origin https://github.com/github_id/reposity_name.git git push -u origin main
続いて、github_id、passwordを入力しておくと、完成となる。
もしgitファイルはローカルに存在して、initとaddが省いてコマンドラインから既存のリポジトリをプッシュして良い。
cd reposity_folder git remote add origin https://github.com/github_id/reposity_name.git git branch -M main git push -u origin main
続いて、github_id、passwordを入力しておくと、完成となる。
以上
1+