穴拔け日記 (28.3.1)
暦日天候地象
舊暦睦月二十三日。
覺書: git & GitHub
以前に書いたものと合はせて、改めて。
初めて GitHub に上げる手順。
- git init でローカルレポジトリを初期化
- git add でファイルを追加
- git commit でローカルレポジトリへコミット
- git remote add origin git@github.com:userid/repname.git でリモートを登録
- git push -u origin master でGitHubに反映させる
GitHubからレポジトリを取得するとき。
- git clone git@github.com:userid/repname.git
ファイルを編輯後、GitHubに反映させるまで。
- git add NEWFILES
- git add -u
- git commit
- git push
其の他
- git status
覺書: building Boost
以下、CygwinでMingw64向けにBoostをビルドする手順。
- 展開した後、そのディレクトリに移る。
- ./bootstrap.sh # 何故だか ./bootstrap.sh --toolset=clang は失敗した
- cp tools/build/example/user-config.jam tools/build/src
- touch tools/build/src/user-config.jam # 次を追加
- using clang : : /usr/bin/x86_64-w64-mingw32-clang++ ;
- ./b2 --toolset=clang --prefix=/usr/local/mw2
- ./b2 --toolset=clang --prefix=/usr/local/mw2 install