<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>VCS on A Moment's Rest</title><link>https://a-moment096.github.io/zh/tags/vcs/</link><description>Recent content in VCS 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/vcs/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></channel></rss>