默认标题
<h1>📜 指令文档说明</h1>
<p><strong>最后更新</strong>:2023-12-01 | <strong>版本</strong>:v1.0.0<br />
<strong>维护者</strong>:技术部/你的名字</p>
<hr />
<h2>🛠️ 常用指令速查表</h2>
<table>
<thead>
<tr>
<th>指令示例</th>
<th>功能描述</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>git clone &lt;仓库地址&gt;</code></td>
<td>克隆远程仓库到本地</td>
</tr>
<tr>
<td><code>npm install &lt;包名&gt;</code></td>
<td>安装指定Node.js依赖包</td>
</tr>
<tr>
<td><code>docker build -t &lt;镜像名&gt; .</code></td>
<td>根据当前目录Dockerfile构建镜像</td>
</tr>
<tr>
<td><code>systemctl restart nginx</code></td>
<td>重启Nginx服务</td>
</tr>
</tbody>
</table>
<hr />
<h2>📦 详细指令手册</h2>
<h3>1. Git 指令</h3>
<table>
<thead>
<tr>
<th>指令示例</th>
<th>描述</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>git checkout -b feature/new-login</code></td>
<td>创建并切换到新分支</td>
</tr>
<tr>
<td><code>git push origin main --force</code></td>
<td>强制推送本地提交到远程仓库(慎用)</td>
</tr>
</tbody>
</table>
<h3>2. Docker 指令</h3>
<table>
<thead>
<tr>
<th>指令示例</th>
<th>描述</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>docker ps -a</code></td>
<td>查看所有容器(包括已停止的)</td>
</tr>
<tr>
<td><code>docker-compose up -d</code></td>
<td>后台启动docker-compose服务</td>
</tr>
</tbody>
</table>
<hr />
<h2>🎨 样式提示</h2>
<pre><code class="language-html">
&lt;!-- 在Showdoc中可通过以下方式添加彩色提示 --&gt;
&lt;span style=&quot;color:red&quot;&gt;危险操作&lt;/span&gt;
&lt;span style=&quot;color:orange&quot;&gt;注意事项&lt;/span&gt;
&lt;span style=&quot;color:green&quot;&gt;安全指令&lt;/span&gt;</code></pre>