Skip to content

Latest commit

 

History

History
56 lines (47 loc) · 1.58 KB

CONTRIBUTING-JP.md

File metadata and controls

56 lines (47 loc) · 1.58 KB

Contributing

一度だけやること

% git clone [email protected]:xxxxx/qe_problems.git
% cd qe_problems
% git remote add upstream https://github.com/hiwane/qe_problems.git

毎回やること

  • 最新版を取得する
% git checkout master
% git pull upstream master
  • 作業用のブランチを切る (yyyyy は好きな名前)
% git checkout -b yyyyy
  • 編集する
% edit file.mpl
% git add file.mpl
% git commit
% ....
% .... 直前のコミットを修正 git commit --amend
% .... もっと昔のから〜     git rebase -i ...
  • push する
% git push origin yyyyy
  • pull request する
    • github の自分のアカウントにアクセス (https://github.com/xxxxx/qe_problems)
    • pull request のボタンがでているはず PR1
    • コメントを追加して, pull request! PR2