0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

OSS に commit したいね?

Last updated at Posted at 2025-09-02

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

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?