<?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 Archives - IODocs</title>
	<atom:link href="https://www.iodocs.com/tag/git/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.iodocs.com/tag/git/</link>
	<description>IODocs: Comprehensive How-To Guides, Software Tutorials, and More IODocs.com</description>
	<lastBuildDate>Sat, 12 Mar 2022 06:22:59 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9</generator>

<image>
	<url>https://www.iodocs.com/wp-content/uploads/2019/01/cropped-logoIODOCSretina-32x32.avif</url>
	<title>git Archives - IODocs</title>
	<link>https://www.iodocs.com/tag/git/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How to Force Overwrite Local Files on Git Pull</title>
		<link>https://www.iodocs.com/how-to-force-overwrite-local-files-on-git-pull/</link>
		
		<dc:creator><![CDATA[rck]]></dc:creator>
		<pubDate>Wed, 29 May 2019 05:13:42 +0000</pubDate>
				<category><![CDATA[Git]]></category>
		<category><![CDATA[does git pull overwrite local changes]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[git force checkout]]></category>
		<category><![CDATA[git force pull]]></category>
		<category><![CDATA[git force push]]></category>
		<category><![CDATA[git overwrite local file]]></category>
		<category><![CDATA[Git Pull]]></category>
		<category><![CDATA[git pull force theirs]]></category>
		<category><![CDATA[git pull overwrite local repo]]></category>
		<category><![CDATA[git remote]]></category>
		<category><![CDATA[git replace local file with remote]]></category>
		<guid isPermaLink="false">https://www.iodocs.com/?p=2435</guid>

					<description><![CDATA[<p>Use the following command to force overwrite local files from remote repository. We are assuming you are downloading changes from remote master branch.</p>
<p>$ git fetch --all<br />
$ git reset --hard origin/master</p>
<p>The post <a href="https://www.iodocs.com/how-to-force-overwrite-local-files-on-git-pull/">How to Force Overwrite Local Files on Git Pull</a> appeared first on <a href="https://www.iodocs.com">IODocs</a>.</p>
]]></description>
		
		
		
			</item>
		<item>
		<title>How do I use &#8216;git reset &#8211;hard HEAD&#8217; to revert to a previous commit?</title>
		<link>https://www.iodocs.com/use-git-reset-hard-head-revert-previous-commit/</link>
		
		<dc:creator><![CDATA[rck]]></dc:creator>
		<pubDate>Thu, 06 Oct 2016 01:14:01 +0000</pubDate>
				<category><![CDATA[Git]]></category>
		<category><![CDATA[git]]></category>
		<guid isPermaLink="false">http://iodocs.com/?p=196</guid>

					<description><![CDATA[<p>First, it&#8217;s always worth noting that git reset --hard is a potentially dangerous command, since it throws away all your uncommitted changes. For safety, you should always check that the output of git status is clean (that is, empty) before using it. Initially you say the following: So I know that Git tracks changes I [&#8230;]</p>
<p>The post <a href="https://www.iodocs.com/use-git-reset-hard-head-revert-previous-commit/">How do I use &#8216;git reset &#8211;hard HEAD&#8217; to revert to a previous commit?</a> appeared first on <a href="https://www.iodocs.com">IODocs</a>.</p>
]]></description>
		
		
		
			</item>
		<item>
		<title>How to remove local (untracked) files from the current Git branch?</title>
		<link>https://www.iodocs.com/remove-local-untracked-files-current-git-branch/</link>
		
		<dc:creator><![CDATA[rck]]></dc:creator>
		<pubDate>Thu, 06 Oct 2016 01:04:29 +0000</pubDate>
				<category><![CDATA[Git]]></category>
		<category><![CDATA[git]]></category>
		<guid isPermaLink="false">http://iodocs.com/?p=185</guid>

					<description><![CDATA[<p>As per the Git Documentation git clean Remove untracked files from the working tree Step 1 is to show what will be deleted by using the -n option: git clean -f -n Clean Step &#8211; beware: this will delete files: git clean -f To remove directories, run git clean -f -d or git clean -fd [&#8230;]</p>
<p>The post <a href="https://www.iodocs.com/remove-local-untracked-files-current-git-branch/">How to remove local (untracked) files from the current Git branch?</a> appeared first on <a href="https://www.iodocs.com">IODocs</a>.</p>
]]></description>
		
		
		
			</item>
		<item>
		<title>How to discard unstaged changes in Git?</title>
		<link>https://www.iodocs.com/discard-unstaged-changes-git/</link>
		
		<dc:creator><![CDATA[rck]]></dc:creator>
		<pubDate>Thu, 06 Oct 2016 01:01:28 +0000</pubDate>
				<category><![CDATA[Git]]></category>
		<category><![CDATA[git]]></category>
		<guid isPermaLink="false">http://iodocs.com/?p=183</guid>

					<description><![CDATA[<p>How do I discard changes in my working copy that are not in the index? &#160; Another quicker way is: &#160; git stash save --keep-index After that, you can drop that stash with a git stash drop command if you like. -------------------------------------------------- What follows is really only a solution if you are working with a [&#8230;]</p>
<p>The post <a href="https://www.iodocs.com/discard-unstaged-changes-git/">How to discard unstaged changes in Git?</a> appeared first on <a href="https://www.iodocs.com">IODocs</a>.</p>
]]></description>
		
		
		
			</item>
	</channel>
</rss>
