Git Pull Request


Git Pull Request

  • PRのためのBranch
    git checkout -b [Branch_Name]
  • の作成
    修正
  • コード
    git add .
    git commit -m "commit message"
  • ブランチ
  • PR
    git push origin [Branch_Name]
  • にプッシュする.
  • ハブに入り、Compare&Pull Requestボタンをクリックします
  • パージ
  • ブランチ
    git branch -D [Branch_Name]
    git push origin --delete [Branch_Name]