<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Tools on A Moment's Rest</title><link>https://a-moment096.github.io/zh/tags/tools/</link><description>Recent content in Tools on A Moment's Rest</description><generator>Hugo -- gohugo.io</generator><language>zh</language><lastBuildDate>Fri, 26 Jun 2026 15:20:58 +0000</lastBuildDate><atom:link href="https://a-moment096.github.io/zh/tags/tools/index.xml" rel="self" type="application/rss+xml"/><item><title>（也许是）一个 Git 教程？其三</title><link>https://a-moment096.github.io/zh/posts/shell_note/git_how/git_3/</link><pubDate>Tue, 26 Aug 2025 18:28:16 +0800</pubDate><guid>https://a-moment096.github.io/zh/posts/shell_note/git_how/git_3/</guid><description>&lt;img src="https://a-moment096.github.io/images/Tatara-Kogasa.jpg" alt="Featured image of post （也许是）一个 Git 教程？其三" /&gt;&lt;p&gt;&lt;em&gt;最后一节，聊聊如何在 GitHub 上进行多人协作吧~&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;头图信息请参考第一节内容，谢谢~ 选曲依然选到了小伞的个人曲，希望你喜欢！&lt;/em&gt;&lt;/p&gt;

&lt;link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/aplayer/dist/APlayer.min.css"&gt;
&lt;style type="text/css"&gt;
[data-scheme="dark"] .aplayer {
 background: var(--card-background);
 border: 1px solid var(--card-separator-color);
}

[data-scheme="dark"] .aplayer.aplayer-withlist .aplayer-info {
 border-bottom-color: var(--card-separator-color);
}

[data-scheme="dark"] .aplayer.aplayer-fixed .aplayer-list {
 border-color: var(--card-separator-color);
}

[data-scheme="dark"] .aplayer .aplayer-body {
 background-color: var(--card-background);
}

[data-scheme="dark"] .aplayer .aplayer-info {
 border-top-color: var(--card-background);
}

[data-scheme="dark"] .aplayer .aplayer-info .aplayer-music .aplayer-title {
 color: var(--card-text-color-main);
}

[data-scheme="dark"] .aplayer .aplayer-info .aplayer-music .aplayer-author {
 color: var(--card-text-color-secondary);
}

[data-scheme="dark"] .aplayer .aplayer-info .aplayer-controller .aplayer-time {
 color: var(--card-text-color-tertiary);
}

[data-scheme="dark"] .aplayer .aplayer-info .aplayer-controller .aplayer-time .aplayer-icon path {
 fill: var(--card-text-color-tertiary);
}

[data-scheme="dark"] .aplayer .aplayer-list {
 background-color: var(--card-background);
}

[data-scheme="dark"] .aplayer .aplayer-list::-webkit-scrollbar-thumb {
 background-color: var(--card-separator-color);
}

[data-scheme="dark"] .aplayer .aplayer-list::-webkit-scrollbar-thumb:hover {
 background-color: var(--accent-color);
}

[data-scheme="dark"] .aplayer .aplayer-list li {
 color: var(--card-text-color-main);
 border-top-color: var(--card-separator-color);
}

[data-scheme="dark"] .aplayer .aplayer-list li:hover {
 background: var(--card-background-selected);
}

[data-scheme="dark"] .aplayer .aplayer-list li.aplayer-list-light {
 background: var(--card-background-selected);
}

[data-scheme="dark"] .aplayer .aplayer-list li .aplayer-list-index {
 color: var(--card-text-color-secondary);
}

[data-scheme="dark"] .aplayer .aplayer-list li .aplayer-list-author {
 color: var(--card-text-color-secondary);
}

[data-scheme="dark"] .aplayer .aplayer-lrc {
 text-shadow: -1px -1px 0 var(--body-background);
}

[data-scheme="dark"] .aplayer .aplayer-lrc:before {
 background: linear-gradient(to bottom, var(--card-background) 0%, rgba(0,0,0,0) 100%);
}

[data-scheme="dark"] .aplayer .aplayer-lrc:after {
 background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, var(--card-background) 100%);
}

[data-scheme="dark"] .aplayer .aplayer-lrc p {
 color: var(--card-text-color-main);
}

[data-scheme="dark"] .aplayer .aplayer-miniswitcher {
 background: var(--card-background-selected);
}

[data-scheme="dark"] .aplayer .aplayer-miniswitcher .aplayer-icon path {
 fill: var(--card-text-color-tertiary);
}

 
[data-scheme="light"] .aplayer {
 background: var(--card-background);
 border: 1px solid var(--card-separator-color);
}

[data-scheme="light"] .aplayer .aplayer-info .aplayer-music .aplayer-title {
 color: var(--card-text-color-main);
}

[data-scheme="light"] .aplayer .aplayer-info .aplayer-music .aplayer-author {
 color: var(--card-text-color-secondary);
}

[data-scheme="light"] .aplayer .aplayer-list li:hover {
 background: var(--card-background-selected);
}
&lt;/style&gt;
&lt;script src="https://cdn.jsdelivr.net/npm/aplayer/dist/APlayer.min.js"&gt;&lt;/script&gt;


&lt;script src="https://a-moment096.github.io/js/Meting.min.js"&gt;&lt;/script&gt;&lt;meting-js auto="https://music.163.com/#/song?id=455026" theme="#2980b9" loop="none"&gt;&lt;/meting-js&gt;
&lt;h2 id="所以git-的远程到底是什么东西"&gt;所以，Git 的远程到底是什么东西？
&lt;/h2&gt;&lt;p&gt;我们之前提过，Git 通过 &lt;em&gt;远程 (Remote)&lt;/em&gt; 来实现和他人合作。我们甚至已经介绍了一些和远程进行交互的命令了。然而，Git 究竟是怎么实现这一功能的？这个功能有什么特点呢？我们和他人进行协作开发时，有什么要注意的点呢？我们一点点来介绍。我们先系统地介绍一下 &lt;em&gt;远程&lt;/em&gt; 是什么东西吧。&lt;/p&gt;</description></item><item><title>（也许是）一个 Git 教程？其二</title><link>https://a-moment096.github.io/zh/posts/shell_note/git_how/git_2/</link><pubDate>Thu, 14 Aug 2025 16:49:16 +0800</pubDate><guid>https://a-moment096.github.io/zh/posts/shell_note/git_how/git_2/</guid><description>&lt;img src="https://a-moment096.github.io/images/Tatara-Kogasa.jpg" alt="Featured image of post （也许是）一个 Git 教程？其二" /&gt;&lt;p&gt;&lt;em&gt;上一节已经介绍了平时会怎么用 Git 进行单分支仓库的管理，这一节就来讲讲 Git 要怎么进行多分支协作吧！&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;头图信息请参考上一节内容，谢谢~ 选曲选到了知名社团 &lt;a class="link" href="https://f-g-s.net/" target="_blank" rel="noopener"
 &gt;Foxtail-Grass-Studio&lt;/a&gt; 对小伞个人曲的翻调，请欣赏~&lt;/em&gt;&lt;/p&gt;</description></item><item><title>（也许是）一个 Git 教程？其一</title><link>https://a-moment096.github.io/zh/posts/shell_note/git_how/git_1/</link><pubDate>Mon, 28 Jul 2025 22:49:16 +0800</pubDate><guid>https://a-moment096.github.io/zh/posts/shell_note/git_how/git_1/</guid><description>&lt;img src="https://a-moment096.github.io/images/Tatara-Kogasa.jpg" alt="Featured image of post （也许是）一个 Git 教程？其一" /&gt;&lt;p&gt;&lt;em&gt;Git 真的很好用，但是 Git 的命令真的好复杂。简单整理一下，就当写个教程好了~&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;头图出自 &lt;a class="link" href="https://www.pixiv.net/en/users/75383094" target="_blank" rel="noopener"
 &gt;夏空&lt;/a&gt; 太太所画的 &lt;a class="link" href="https://www.pixiv.net/en/artworks/116876998" target="_blank" rel="noopener"
 &gt;多多良 小伞&lt;/a&gt;，可爱捏~ 那就来一曲小伞的个人曲吧&lt;/em&gt;&lt;/p&gt;</description></item><item><title>使用 rsync 进行同步</title><link>https://a-moment096.github.io/zh/posts/shell_note/use_rsync/</link><pubDate>Mon, 28 Jul 2025 12:43:39 +0800</pubDate><guid>https://a-moment096.github.io/zh/posts/shell_note/use_rsync/</guid><description>&lt;img src="https://a-moment096.github.io/images/%E8%B4%9D%E5%8A%A0%E5%B0%94%E6%B9%96%E7%95%94.jpg" alt="Featured image of post 使用 rsync 进行同步" /&gt;&lt;p&gt;&lt;em&gt;有点受不太了 &lt;code&gt;scp&lt;/code&gt; 和 &lt;code&gt;sftp&lt;/code&gt; 了，也许是食用姿势不对吧，总之我选择 &lt;code&gt;rsync&lt;/code&gt;！&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&lt;del&gt;图源找不到诶……从朋友那里薅过来的图，很漂亮就放在这里了&lt;/del&gt; 小爷我找到啦！是出自 &lt;a class="link" href="https://www.pixiv.net/en/users/8605991" target="_blank" rel="noopener"
 &gt;fasnakegod&lt;/a&gt; 大大的 &lt;a class="link" href="https://www.pixiv.net/en/artworks/125739568" target="_blank" rel="noopener"
 &gt;贝加尔湖畔&lt;/a&gt;。既然如此就分享一首钢琴曲吧。一首 &lt;strong&gt;騎士王の誇り&lt;/strong&gt;（骑士王的荣耀）送给大家。（好像毫无关联诶 kora!）&lt;/em&gt;&lt;/p&gt;</description></item><item><title>上一个命令是什么？</title><link>https://a-moment096.github.io/zh/posts/shell_note/last_command/</link><pubDate>Sat, 26 Jul 2025 20:09:18 +0800</pubDate><guid>https://a-moment096.github.io/zh/posts/shell_note/last_command/</guid><description>&lt;img src="https://a-moment096.github.io/images/SEASIDE_SOLILOQUIES.png" alt="Featured image of post 上一个命令是什么？" /&gt;&lt;p&gt;&lt;em&gt;曾经总会好奇：怎么获取上一个命令呢？应该很简单才对吧？简单的搜索后，下面是我得到的结果，就记录一下吧&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;头图出自 Orangestar 的专辑 &lt;strong&gt;SEASIDE SOLILOQUIES&lt;/strong&gt;, 好看又好听。所以这里贴曲就贴这个专辑的主打歌好了：一首 &lt;strong&gt;Alice in 冷凍庫&lt;/strong&gt;，希望你喜欢。&lt;/em&gt;&lt;/p&gt;</description></item></channel></rss>