Skip to content

Commit a35e17b

Browse files
committed
Site updated: 2025-03-14 15:10:13
1 parent 6e8ff78 commit a35e17b

File tree

5 files changed

+197
-191
lines changed

5 files changed

+197
-191
lines changed

ComputerScience/基本操作/git使用/index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@
2020

2121
<script class="next-config" data-name="main" type="application/json">{"hostname":"simuleite.github.io","root":"/","images":"/images","scheme":"Muse","darkmode":false,"version":"8.21.0","exturl":false,"sidebar":{"position":"left","width_expanded":320,"width_dual_column":240,"display":"post","padding":18,"offset":12},"hljswrap":true,"copycode":{"enable":false,"style":null},"fold":{"enable":false,"height":500},"bookmark":{"enable":false,"color":"#222","save":"auto"},"mediumzoom":false,"lazyload":false,"pangu":false,"comments":{"style":"tabs","active":null,"storage":true,"lazyload":false,"nav":null},"stickytabs":false,"motion":{"enable":true,"async":false,"transition":{"menu_item":"fadeInDown","post_block":"fadeIn","post_header":"fadeInDown","post_body":"fadeInDown","coll_header":"fadeInLeft","sidebar":"fadeInUp"}},"i18n":{"placeholder":"搜索...","empty":"没有找到任何搜索结果:${query}","hits_time":"找到 ${hits} 个搜索结果(用时 ${time} 毫秒)","hits":"找到 ${hits} 个搜索结果"},"path":"/search.xml","localsearch":{"enable":true,"top_n_per_article":1,"unescape":false,"preload":false}}</script><script src="/js/config.js"></script>
2222

23-
<meta name="description" content="0.0 代码合并流程 在各自的分支self上进行开发 切换到develop分支,git pull --rebase同步最新代码 不要使用Git Pull git pull会创建一个新的merge commit,这样提交历史不是一条清晰的线,包含无意义的分支合并,非常混乱。 而git pull --rebase会解决这个问题,这个命令首先把你的commit放到一变,拉取最新分支状态,最后为你">
23+
<meta name="description" content="0.0 代码合并流程 在各自的分支self上进行开发 切换到develop分支,git pull --rebase同步最新代码 不要使用Git Pull git pull会创建一个新的merge commit,这样提交历史不是一条清晰的线,包含无意义的分支合并,非常混乱。 而git pull --rebase会解决这个问题,这个命令首先把你的commit放到一边,拉取最新分支状态,最后为你">
2424
<meta property="og:type" content="article">
2525
<meta property="og:title" content="git使用">
2626
<meta property="og:url" content="http://simuleite.github.io/ComputerScience/%E5%9F%BA%E6%9C%AC%E6%93%8D%E4%BD%9C/git%E4%BD%BF%E7%94%A8/index.html">
2727
<meta property="og:site_name" content="SMULET&#39;s BLOG">
28-
<meta property="og:description" content="0.0 代码合并流程 在各自的分支self上进行开发 切换到develop分支,git pull --rebase同步最新代码 不要使用Git Pull git pull会创建一个新的merge commit,这样提交历史不是一条清晰的线,包含无意义的分支合并,非常混乱。 而git pull --rebase会解决这个问题,这个命令首先把你的commit放到一变,拉取最新分支状态,最后为你">
28+
<meta property="og:description" content="0.0 代码合并流程 在各自的分支self上进行开发 切换到develop分支,git pull --rebase同步最新代码 不要使用Git Pull git pull会创建一个新的merge commit,这样提交历史不是一条清晰的线,包含无意义的分支合并,非常混乱。 而git pull --rebase会解决这个问题,这个命令首先把你的commit放到一边,拉取最新分支状态,最后为你">
2929
<meta property="og:locale" content="zh_CN">
3030
<meta property="article:published_time" content="2023-11-08T16:00:00.000Z">
31-
<meta property="article:modified_time" content="2025-03-09T07:13:40.299Z">
31+
<meta property="article:modified_time" content="2025-03-13T02:56:18.414Z">
3232
<meta property="article:author" content="SIMULEITE">
3333
<meta property="article:tag" content="基本操作">
3434
<meta name="twitter:card" content="summary">
@@ -223,7 +223,7 @@ <h1 class="post-title" itemprop="name headline">
223223
<i class="far fa-calendar-check"></i>
224224
</span>
225225
<span class="post-meta-item-text">更新于</span>
226-
<time title="修改时间:2025-03-09 15:13:40" itemprop="dateModified" datetime="2025-03-09T15:13:40+08:00">2025-03-09</time>
226+
<time title="修改时间:2025-03-13 10:56:18" itemprop="dateModified" datetime="2025-03-13T10:56:18+08:00">2025-03-13</time>
227227
</span>
228228

229229

@@ -243,7 +243,7 @@ <h1 class="post-title" itemprop="name headline">
243243
<blockquote>
244244
<p>不要使用Git Pull<br />
245245
<code>git pull</code>会创建一个新的<code>merge commit</code>,这样提交历史不是一条清晰的线,包含无意义的分支合并,非常混乱。<br />
246-
<code>git pull --rebase</code>会解决这个问题,这个命令首先把你的<code>commit</code>放到一变,拉取最新分支状态,最后为你自动变基到最新状态。<br />
246+
<code>git pull --rebase</code>会解决这个问题,这个命令首先把你的<code>commit</code>放到一边,拉取最新分支状态,最后为你自动变基到最新状态。<br />
247247
如果遇到合并冲突,使用<code>git rebase --abort</code>撤回<code>rebase</code>,然后使用<code>git pull</code>或者使用交互式变基。</p>
248248
</blockquote>
249249
<ol start="3">

ComputerScience/指南/Markdown模板/index.html

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<meta property="og:description" content="一号标题 Title 2 三号标题 Title 4 五号标题 Title 6 标题 Title 标题 左对齐 Justify Align 右对齐 无序列表 Unordered List 有序列表 2. Ordered List [x] 待办事项 [] TO-DO List Delete Line Blod Italic Code E&#x3D;MC2E &#x3D;">
2929
<meta property="og:locale" content="zh_CN">
3030
<meta property="article:published_time" content="2023-11-09T16:00:00.000Z">
31-
<meta property="article:modified_time" content="2025-03-01T12:29:59.456Z">
31+
<meta property="article:modified_time" content="2025-03-14T01:58:28.667Z">
3232
<meta property="article:author" content="SIMULEITE">
3333
<meta property="article:tag" content="指南">
3434
<meta name="twitter:card" content="summary">
@@ -223,7 +223,7 @@ <h1 class="post-title" itemprop="name headline">
223223
<i class="far fa-calendar-check"></i>
224224
</span>
225225
<span class="post-meta-item-text">更新于</span>
226-
<time title="修改时间:2025-03-01 20:29:59" itemprop="dateModified" datetime="2025-03-01T20:29:59+08:00">2025-03-01</time>
226+
<time title="修改时间:2025-03-14 09:58:28" itemprop="dateModified" datetime="2025-03-14T09:58:28+08:00">2025-03-14</time>
227227
</span>
228228

229229

@@ -279,7 +279,7 @@ <h6 id="title-6"><a class="markdownIt-Anchor" href="#title-6"></a> Title 6</h6>
279279
<code>Code</code><br />
280280
<span class="katex"><span class="katex-mathml"><math><semantics><mrow><mi>E</mi><mo>=</mo><mi>M</mi><msup><mi>C</mi><mn>2</mn></msup></mrow><annotation encoding="application/x-tex">E = MC^2</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="base"><span class="strut" style="height:0.68333em;vertical-align:0em;"></span><span class="mord mathdefault" style="margin-right:0.05764em;">E</span><span class="mspace" style="margin-right:0.2777777777777778em;"></span><span class="mrel">=</span><span class="mspace" style="margin-right:0.2777777777777778em;"></span></span><span class="base"><span class="strut" style="height:0.8141079999999999em;vertical-align:0em;"></span><span class="mord mathdefault" style="margin-right:0.10903em;">M</span><span class="mord"><span class="mord mathdefault" style="margin-right:0.07153em;">C</span><span class="msupsub"><span class="vlist-t"><span class="vlist-r"><span class="vlist" style="height:0.8141079999999999em;"><span style="top:-3.063em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"></span><span class="sizing reset-size6 size3 mtight"><span class="mord mtight">2</span></span></span></span></span></span></span></span></span></span></span><br />
281281
<a href="#">Link</a></p>
282-
<p><sup class="footnote-ref"><a href="#fn1" id="fnref1">[1]</a></sup>Hello, World!</p>
282+
<p><sup class="footnote-ref"><a href="#fn1" id="fnref1">[1]</a></sup>Hello, World!<sup class="footnote-ref"><a href="#fn2" id="fnref2">[2]</a></sup></p>
283283
<figure class="highlight java"><table><tr><td class="code"><pre><span class="line"><span class="keyword">public</span> <span class="keyword">static</span> <span class="keyword">void</span> <span class="title function_">main</span><span class="params">(String[] args)</span> &#123;</span><br><span class="line"> System.out.println(<span class="string">&quot;Hello World!&quot;</span>);</span><br><span class="line">&#125;</span><br></pre></td></tr></table></figure>
284284
<figure class="highlight diff"><table><tr><td class="code"><pre><span class="line"><span class="comment">--- auto_detect: ture</span></span><br><span class="line"><span class="comment">+++ auto_detect: false</span></span><br></pre></td></tr></table></figure>
285285
<blockquote>
@@ -313,6 +313,8 @@ <h6 id="title-6"><a class="markdownIt-Anchor" href="#title-6"></a> Title 6</h6>
313313
<ol class="footnotes-list">
314314
<li id="fn1" class="footnote-item"><p>Hello World! <a href="#fnref1" class="footnote-backref">↩︎</a></p>
315315
</li>
316+
<li id="fn2" class="footnote-item"><p>Footnote <a href="#fnref2" class="footnote-backref">↩︎</a></p>
317+
</li>
316318
</ol>
317319
</section>
318320

0 commit comments

Comments
 (0)