githubでbasercms本家の更新に追従しながら独自appを構築する
主にgitの設定と操作方法です。
例によって、個人の備忘録です。
1、githubでbasercmsをフォーク。名前を変える。
2、フォークしたのをclone
git clone https://github.com/binbin4649/basercms.git
3、自分のリモート登録
git remote set-url origin https://github.com/binbin4649/basercms.git
4、本家のリモート登録
git remote add upstream git@github.com:baserproject/basercms.git
5、リモート確認
git remote -v
6、自分の登録
git config --global user.name "binbin4649" git config --global user.email binbin4649@gmail.com
7、自分の確認
git config --list
–以下、作業しながらの更新作業
独自appを更新したら
8、ステージング
git add .
9、コミット
git commit
10、githubにpush、branchはmaster
git push origin master
本家に追従
(参考)http://please-sleep.cou929.nu/track-original-at-forked-repo.html
11、本家の変更を fetch
git fetch upstream
12、本家の変更を merge
git merge upstream/master
本家のbranchがdev-3なら、
git merge upstream/dev-3
13、merge後、githubの自分のリポジトリにpush
git push origin master
以下、8~13あたりを適当に繰り返すと独自appが完成する(はず)。
前の記事: 神話を巡る冒険:伊勢・出雲巡礼記 【元伊勢 籠神社・真名井神社@京都府】要約版
次の記事: [その2]githubでbasercms本家の更新に追従しながら独自appを構築する
2016/02/16 | 開発記録
コメント/トラックバック
トラックバック用URL:
この投稿のコメント・トラックバックRSS