<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Git的7个神仙技巧 &#8211; moneyslow.com</title>
	<atom:link href="https://moneyslow.com/tag/git%e7%9a%847%e4%b8%aa%e7%a5%9e%e4%bb%99%e6%8a%80%e5%b7%a7/feed" rel="self" type="application/rss+xml" />
	<link>https://moneyslow.com</link>
	<description>making money with technology</description>
	<lastBuildDate>Sun, 07 Feb 2021 22:32:27 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.5</generator>
	<item>
		<title>Git的7个神仙技巧，让你功力大增</title>
		<link>https://moneyslow.com/git%e7%9a%847%e4%b8%aa%e7%a5%9e%e4%bb%99%e6%8a%80%e5%b7%a7%ef%bc%8c%e8%ae%a9%e4%bd%a0%e5%8a%9f%e5%8a%9b%e5%a4%a7%e5%a2%9e.html</link>
		
		<dc:creator><![CDATA[moneyslow]]></dc:creator>
		<pubDate>Sun, 07 Feb 2021 22:29:07 +0000</pubDate>
				<category><![CDATA[newest]]></category>
		<category><![CDATA[Git的7个神仙技巧]]></category>
		<guid isPermaLink="false">https://moneyslow.com/?p=12717</guid>

					<description><![CDATA[1、Git 中的自动更正 我们有时都会打错字，但如果启用了 Git 的自动更正功能，就可以让 Git 自动修正打错的子命令。假设你想用 git status 检查状态，却不小心输入了 git stats。正常情况下，Git 会告诉你 stats 不是一条有效的命令：$ git statsgit: ‘stats’ is not a git command. See ‘git --help’.The most similar command isstatus为了避免类似的情况发生，请在 Git 配置中启用 Git 自动更正功能：$ git config --global help.autocorrect 1如果你希望这个命令只适用于你当前的版本库，请省略 --global 选项。这条命令启用了自动更正功能。更深入的教程可以在 Git Docs 中找到，但尝试一下和上面一样的错误命令，就能很好地了解这个配置的作用：$ git statsgit: ‘stats’ is not a git command. See ‘git --help’.On [&#8230;]]]></description>
		
		
		
			</item>
	</channel>
</rss>
