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?

More than 1 year has passed since last update.

GithubのPR作成前に直したい場合

0
Last updated at Posted at 2025-08-11

PR作成前に修正箇所に気づいた

  • 1.ファイルを修正
  • 2.ファイルを保存
git add .
  • 3.再度コミットする
git commit -m "[fix]hogehoge"
  • 4.pushする
# 基本はこれ
$ git push -u origin [ブランチ名]

# または以下
$ git push 
  • 5.PR作成する
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?