<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
    <channel>
      <title>cmdocs</title>
      <link>https://himadajin.github.io/cmdocs</link>
      <description>最新の10件 on cmdocs</description>
      <generator>Quartz -- quartz.jzhao.xyz</generator>
      <item>
    <title>svn</title>
    <link>https://himadajin.github.io/cmdocs/svn</link>
    <guid>https://himadajin.github.io/cmdocs/svn</guid>
    <description><![CDATA[ # 作業コピーの情報を表示する svn info # 最新の5件のログを表示する # `-r HEAD:0` で範囲を0~HEADに設定する # `-l 5` で表示するログの件数を5に制限(limit)する svn log -r HEAD:0 -l 5 # 指定したリビジョンのログを表示する svn log -r {revision_number} # 作業コピーをBASEリビジョンに戻す svn revert -R . ]]></description>
    <pubDate>Wed, 25 Feb 2026 13:02:26 GMT</pubDate>
  </item><item>
    <title>make</title>
    <link>https://himadajin.github.io/cmdocs/make</link>
    <guid>https://himadajin.github.io/cmdocs/make</guid>
    <description><![CDATA[ # 強制的に全てをビルドする (make clean; make と同等) make -B all # ドライランする (コマンドを実行せずに表示のみ行う) make -n all # 並列ビルドを実行する make -j$(nproc) all # ディレクトリを移動してからビルドする make -C {build_dir} all # 指定した Makefile を使用してビルドする make -f {Makefile} all # デバッグ時にルールの実行過程を確認する make --trace target オプション説明使用例-kエラーが発生しても可能な限り継続make -k all... ]]></description>
    <pubDate>Wed, 25 Feb 2026 12:43:01 GMT</pubDate>
  </item><item>
    <title>git</title>
    <link>https://himadajin.github.io/cmdocs/git</link>
    <guid>https://himadajin.github.io/cmdocs/git</guid>
    <description><![CDATA[ # リモートリポジトリから最新の変更を取得する git fetch # 特定のタグにチェックアウトする git checkout llvmorg-21.1.7 # 変更を一時的に退避する git stash # origin/main の位置でローカルに main ブランチを作成して移動する git checkout -B main origin/main # リモートのブランチをローカルに作成して移動する # リモートに指定した名称のブランチが存在しない場合はエラーになる git switch --track origin/{branch_name} # 新しいブランチを作成して移動する g... ]]></description>
    <pubDate>Wed, 25 Feb 2026 12:36:48 GMT</pubDate>
  </item><item>
    <title>clang</title>
    <link>https://himadajin.github.io/cmdocs/clang</link>
    <guid>https://himadajin.github.io/cmdocs/clang</guid>
    <description><![CDATA[ # C言語のソースコードをLLVM IRにコンパイルする clang -emit-llvm -S test.c -o test.ll # c23でコンパイルする clang -std=c23 main.c # サポートしているターゲットの一覧を表示する clang --print-targets # デフォルトのtarget-tripleを表示する clang --print-target-triple See also Clang Compiler User’s Manual Clang command line argument reference Clang Language Exten... ]]></description>
    <pubDate>Sat, 21 Feb 2026 01:06:41 GMT</pubDate>
  </item><item>
    <title>cmdocs</title>
    <link>https://himadajin.github.io/cmdocs/</link>
    <guid>https://himadajin.github.io/cmdocs/</guid>
    <description><![CDATA[ Personal notes on how to use commands ]]></description>
    <pubDate>Sat, 21 Feb 2026 00:36:19 GMT</pubDate>
  </item><item>
    <title>apt</title>
    <link>https://himadajin.github.io/cmdocs/apt</link>
    <guid>https://himadajin.github.io/cmdocs/apt</guid>
    <description><![CDATA[ # パッケージのリストを更新する sudo apt update # インストール済みのパッケージを更新する sudo apt upgrade # キャッシュを削除する sudo apt clean apt-mark # 手動でインストールしたパッケージを列挙する apt-mark showmanual See also brew scoop . ]]></description>
    <pubDate>Sun, 08 Feb 2026 13:28:06 GMT</pubDate>
  </item><item>
    <title>brew</title>
    <link>https://himadajin.github.io/cmdocs/brew</link>
    <guid>https://himadajin.github.io/cmdocs/brew</guid>
    <description><![CDATA[ 基本操作 # パッケージをインストールする brew install {package} # パッケージをアンインストールする brew uninstall {package} # すべてのキャッシュを削除する brew cleanup --prune=all リポジトリ # パッケージのリストを更新する brew update # 手動でインストールしたパッケージを列挙する brew leaves # 古いバージョンのパッケージを列挙する brew outdated # すべてのキャッシュを削除 brew cleanup --prune=all # リポジトリを追加 brew tap ris... ]]></description>
    <pubDate>Sun, 08 Feb 2026 13:28:06 GMT</pubDate>
  </item><item>
    <title>cmake</title>
    <link>https://himadajin.github.io/cmdocs/cmake</link>
    <guid>https://himadajin.github.io/cmdocs/cmake</guid>
    <description><![CDATA[ # ninjaを使用する cmake -G Ninja # ビルドディレクトリを指定する cmake -B build # ソースディレクトリ(CMakeLists.txtの所在地)を指定する cmake -S . ]]></description>
    <pubDate>Sun, 08 Feb 2026 13:28:06 GMT</pubDate>
  </item><item>
    <title>docker</title>
    <link>https://himadajin.github.io/cmdocs/docker</link>
    <guid>https://himadajin.github.io/cmdocs/docker</guid>
    <description><![CDATA[ # イメージをインタラクティブモードで起動する docker run -it debian:bullseye # イメージをバックグラウンドで起動する docker run python:3.9 python -c &#039;print(&quot;Hello, world!&quot;)&#039; # ローカルに保存したイメージの一覧を表示する docker images # イメージをpullする docker pull debian:bullseye イメージの起動 (インタラクティブモード) docker run -it debian:bullseye -itオプションを付けると、... ]]></description>
    <pubDate>Sun, 08 Feb 2026 13:28:06 GMT</pubDate>
  </item><item>
    <title>ninja</title>
    <link>https://himadajin.github.io/cmdocs/ninja</link>
    <guid>https://himadajin.github.io/cmdocs/ninja</guid>
    <description><![CDATA[ # 指定したディレクトリに移動してからビルドを実行する ninja -C build See also cmake make . ]]></description>
    <pubDate>Sun, 08 Feb 2026 13:28:06 GMT</pubDate>
  </item>
    </channel>
  </rss>