<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:media="http://search.yahoo.com/mrss/"
	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 - 四号程序员</title>
	<atom:link href="https://www.coder4.com/archives/tag/git/feed" rel="self" type="application/rss+xml" />
	<link>https://www.coder4.com</link>
	<description>Keep It Simple and Stupid</description>
	<lastBuildDate>Mon, 26 Sep 2022 01:57:25 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.3</generator>
	<item>
		<title>git实现提交前自动替换某些字符串</title>
		<link>https://www.coder4.com/archives/7311</link>
					<comments>https://www.coder4.com/archives/7311#respond</comments>
		
		<dc:creator><![CDATA[coder4]]></dc:creator>
		<pubDate>Wed, 11 Aug 2021 08:26:32 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[提交]]></category>
		<category><![CDATA[自动替换]]></category>
		<guid isPermaLink="false">https://www.coder4.com/?p=7311</guid>

					<description><![CDATA[新建hook文件 # cat .git/hooks/pre-commit ##!/bin/sh for FILE in `git diff --cached --name-only --diff-filter=ACM`;do echo $FILE sed -i '' -E 's/(key1&#124;key2)/coder4/' $FILE git add $FILE done 添加执行权限 chmod a+x .git/hooks/pre-commit[......] 继续阅读]]></description>
		
					<wfw:commentRss>https://www.coder4.com/archives/7311/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>gitee如何在本地初始化远程已有项目</title>
		<link>https://www.coder4.com/archives/7302</link>
					<comments>https://www.coder4.com/archives/7302#respond</comments>
		
		<dc:creator><![CDATA[coder4]]></dc:creator>
		<pubDate>Thu, 29 Jul 2021 11:08:32 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[git]]></category>
		<guid isPermaLink="false">https://www.coder4.com/?p=7302</guid>

					<description><![CDATA[1 git init 2 git remote add origin xxx@gitee.com/xxx/yyyy.git 3 git pull origin master:master 4 git push -u origin master 5 git add . git commit -m ... &#160;[......] 继续阅读]]></description>
		
					<wfw:commentRss>https://www.coder4.com/archives/7302/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>不通过gitignore忽略本地文件</title>
		<link>https://www.coder4.com/archives/7221</link>
					<comments>https://www.coder4.com/archives/7221#respond</comments>
		
		<dc:creator><![CDATA[coder4]]></dc:creator>
		<pubDate>Wed, 24 Feb 2021 10:59:38 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[gitignore]]></category>
		<category><![CDATA[忽略本地文件]]></category>
		<guid isPermaLink="false">https://www.coder4.com/?p=7221</guid>

					<description><![CDATA[将文件添加到如下文件中 $GIT_DIR/.git/info/exclude &#160;[......] 继续阅读]]></description>
		
					<wfw:commentRss>https://www.coder4.com/archives/7221/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>oh my zsh中git常用快捷别名摘抄</title>
		<link>https://www.coder4.com/archives/5534</link>
					<comments>https://www.coder4.com/archives/5534#respond</comments>
		
		<dc:creator><![CDATA[coder4]]></dc:creator>
		<pubDate>Thu, 22 Jun 2017 03:31:19 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[快捷别名]]></category>
		<guid isPermaLink="false">https://www.coder4.com/?p=5534</guid>

					<description><![CDATA[完整版可以看这里 alias gc='git commit -v' alias gup='git pull --rebase' alias gst='git status' alias gp='git push' alias gco='git checkout' alias glog='git log --oneline --decorate --graph' alias gloga='git log --oneline --decorate --graph --all' al[......] 继续阅读]]></description>
		
					<wfw:commentRss>https://www.coder4.com/archives/5534/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>git解决冲突简单方法</title>
		<link>https://www.coder4.com/archives/5051</link>
					<comments>https://www.coder4.com/archives/5051#respond</comments>
		
		<dc:creator><![CDATA[coder4]]></dc:creator>
		<pubDate>Sat, 23 Jul 2016 03:53:23 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[conflict]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[冲突]]></category>
		<guid isPermaLink="false">https://www.coder4.com/?p=5051</guid>

					<description><![CDATA[如果只是全文件的用本地或远程： git checkout --ours index.html git checkout --theirs _layouts/default.html ours：本地 theris：远程 如果想全部文件都采用上述策略： git merge -Xours git merge -Xtheirs &#160;[......] 继续阅读]]></description>
		
					<wfw:commentRss>https://www.coder4.com/archives/5051/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>[转]git &#038;&amp; github入门教程</title>
		<link>https://www.coder4.com/archives/2130</link>
					<comments>https://www.coder4.com/archives/2130#respond</comments>
		
		<dc:creator><![CDATA[coder4]]></dc:creator>
		<pubDate>Thu, 08 Sep 2011 14:36:10 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[计算机技术]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[github]]></category>
		<guid isPermaLink="false">http://www.coder4.com/?p=2130</guid>

					<description><![CDATA[转载自：github &#38; git 入门教程 1. Git和GitHub简单文字说明 Git是一个开源的分布式版本控制系统，用以有效、高速的处理各种规模的项目版本管理， 它是 Linux Torvalds 为了帮助管理 Linux 内核开发而开发的一个开放源码的版本控制软件，后来得到广泛的使用。 GitHub可以托管各种git库，并提供一个web界面，但与其它像 SourceForge或GoogleCode这样的服务不同，GitHub的独特卖点在于从另外一个项目进行分支的[......] 继续阅读]]></description>
		
					<wfw:commentRss>https://www.coder4.com/archives/2130/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
