githubのpull requestをローカルにチェックアウトします。
オフシャルの手順は、下記のリンクです。
maven-scmの#31
のpull requestをチェックアウトしました。
最初にgithubでmaven-scmのリポジトリをforkします。
その後で、次のような手順で#31
のpull requestがを
- forkしたリポジトリをcloneする
- upstreamを追加する
- pull requestをfetchする
- fetchしたpull requestをチェックアウトする
git clone https://github.com/githubユーザ/maven-scm.git git remote add upstream https://github.com/apache/maven-scm.git git fetch upstream pull/31/head:pr31-maven-scm git checkout pr31-maven-scm
#31
をmavenのローカルリポジトリにインストールします。
mvn install -DskipTests=true
1.9.5-SNAPSHOT
が作成されました。
$ ls -t ~/.m2/repository/org/apache/maven/plugins/maven-scm-plugin | head -1 1.9.5-SNAPSHOT $
以上