Open1

Git/GitHubメモ

くだらん。くだらん。

初回のgit push

ローカルでgit initし、WebブラウザからGitHub上に対応するリポジトリを作成した後、初回コミットする時の手順。毎回忘れるのでメモ。

$ git remote add origin https://github.com/yz2cm/my_project.git
Username for 'https://github.com': yz2cm
Password for 'https://yz2cm@github.com':
# パスワードは、アカウントメニューのsettingsのDeveloper settingsのPersonal access tokensのFine-grained tokensで生成したトークンを入力

$ git merge --allow-unrelated-histories
Merge made by the 'recursive' strategy.
 README.md | 2 ++
 1 file changed, 2 insertions(+)
 create mode 100644 README.md

$ git push origin main
Username for 'https://github.com': yz2cm
Password for 'https://yz2cm@github.com':
Enumerating objects: 25, done.
Counting objects: 100% (25/25), done.
Delta compression using up to 8 threads
Compressing objects: 100% (20/20), done.
Writing objects: 100% (24/24), 3.66 KiB | 1.22 MiB/s, done.
Total 24 (delta 5), reused 0 (delta 0)
remote: Resolving deltas: 100% (5/5), done.
To https://github.com/yz2cm/my_project.git
   6523297..9141b34  main -> main