OSS コミットしたらかっこいいよね?
やり方
Fork する (ブラウザから)
元の repo を clone
git clone https://github.com/aaaaa/repo_name.git
repo に入って、自分の fork を登録する
cd repo_name
して
git remote add fork git@github.com:my_account/repo_name.git
ちゃんと出来てるか確認する
git remote -v
編集していく
git checkout -b fix/xxxxxx
編集したら
git add aaaaaa/bbbbbb.py
git commit -m "fix cccccc"
ここまでは普通
次で fork を指定するのに注意!!!!!
git push -u fork fix/xxxxxx
参考
基本
https://zenn.dev/ryuji_cre8ive/articles/e62f159e1e2442
Push 間違えたときのやり直し方
https://qiita.com/S42100254h/items/db435c98c2fc9d4a68c2