- github のアカウントを作る
- https://github.com/hiwane/qe_problems にアクセス
- fork する
- 自分のアカウント(xxxxx)ページにアクセスする
- https://github.com/xxxxx/qe_problems
- copy する
- SyNRAC アカウントの場合
git clone
,git remote add
する
% 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 のボタンがでているはず
- コメントを追加して, pull request!