<?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>Linux Ask! &#187; Revision Control Systems</title>
	<atom:link href="http://www.linuxask.com/topics/revision-control-systems/feed" rel="self" type="application/rss+xml" />
	<link>http://www.linuxask.com</link>
	<description>Linux Ask! is a Q &#38; A web site specific for Linux related questions such as how to use common Linux commands.</description>
	<lastBuildDate>Tue, 05 May 2015 07:15:40 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.9.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>How to fix &#8220;all deleted files from changed but not updated&#8221; in Git?</title>
		<link>http://www.linuxask.com/questions/how-to-fix-all-deleted-files-from-changed-but-not-updated-in-git</link>
		<comments>http://www.linuxask.com/questions/how-to-fix-all-deleted-files-from-changed-but-not-updated-in-git#comments</comments>
		<pubDate>Fri, 10 Oct 2014 09:33:41 +0000</pubDate>
		<dc:creator><![CDATA[Linux Ask!]]></dc:creator>
				<category><![CDATA[Git]]></category>
		<category><![CDATA[git]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=4454</guid>
		<description><![CDATA[Answer: Sometimes, when you've removed files without using the git rm and git will warn you the message "Changed but not updated.." To fix this, you can use the command # git ls-files --deleted -z &#124; xargs -0 git rm<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/how-to-restore-locally-deleted-files-using-git" rel="bookmark" title="How to restore locally deleted files using git">How to restore locally deleted files using git </a></li>
<li><a href="http://www.linuxask.com/questions/show-changed-files-with-git-log" rel="bookmark" title="Show changed files with git log">Show changed files with git log </a></li>
<li><a href="http://www.linuxask.com/questions/show-changed-files-in-git-log" rel="bookmark" title="Show changed files in git log">Show changed files in git log </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p><strong>Answer:</strong></p>
<p>Sometimes, when you've removed files without using the <strong>git rm</strong> and git will warn you the message "<strong>Changed but not updated..</strong>"</p>
<p>To fix this, you can use the command</p>
<p><code># git ls-files --deleted -z | xargs -0 git rm</code></p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/how-to-restore-locally-deleted-files-using-git" rel="bookmark" title="How to restore locally deleted files using git">How to restore locally deleted files using git </a></li>
<li><a href="http://www.linuxask.com/questions/show-changed-files-with-git-log" rel="bookmark" title="Show changed files with git log">Show changed files with git log </a></li>
<li><a href="http://www.linuxask.com/questions/show-changed-files-in-git-log" rel="bookmark" title="Show changed files in git log">Show changed files in git log </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/how-to-fix-all-deleted-files-from-changed-but-not-updated-in-git/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Show changed files in git log</title>
		<link>http://www.linuxask.com/questions/show-changed-files-in-git-log</link>
		<comments>http://www.linuxask.com/questions/show-changed-files-in-git-log#comments</comments>
		<pubDate>Fri, 06 Jun 2014 08:08:58 +0000</pubDate>
		<dc:creator><![CDATA[Linux Ask!]]></dc:creator>
				<category><![CDATA[Advanced Linux]]></category>
		<category><![CDATA[Git]]></category>
		<category><![CDATA[git]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=4414</guid>
		<description><![CDATA[Show changed files in git log Answer: "git log" will not show the changed file in the output, to show it, use # git log --stat<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/show-changed-files-with-git-log" rel="bookmark" title="Show changed files with git log">Show changed files with git log </a></li>
<li><a href="http://www.linuxask.com/questions/show-hidden-files-in-mac-file-dialogs" rel="bookmark" title="Show hidden files in Mac file dialogs">Show hidden files in Mac file dialogs </a></li>
<li><a href="http://www.linuxask.com/questions/show-ignored-files-in-mercurial" rel="bookmark" title="Show ignored files in Mercurial">Show ignored files in Mercurial </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>Show changed files in git log</p>
<p><strong>Answer:</strong></p>
<p>"<strong>git log</strong>" will not show the changed file in the output, to show it, use </p>
<p><code># git log --stat</code></p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/show-changed-files-with-git-log" rel="bookmark" title="Show changed files with git log">Show changed files with git log </a></li>
<li><a href="http://www.linuxask.com/questions/show-hidden-files-in-mac-file-dialogs" rel="bookmark" title="Show hidden files in Mac file dialogs">Show hidden files in Mac file dialogs </a></li>
<li><a href="http://www.linuxask.com/questions/show-ignored-files-in-mercurial" rel="bookmark" title="Show ignored files in Mercurial">Show ignored files in Mercurial </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/show-changed-files-in-git-log/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to push all local git branches to remote</title>
		<link>http://www.linuxask.com/questions/how-to-push-all-local-git-branches-to-remote</link>
		<comments>http://www.linuxask.com/questions/how-to-push-all-local-git-branches-to-remote#comments</comments>
		<pubDate>Mon, 19 Aug 2013 17:19:29 +0000</pubDate>
		<dc:creator><![CDATA[Linux Ask!]]></dc:creator>
				<category><![CDATA[Git]]></category>
		<category><![CDATA[git]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=4329</guid>
		<description><![CDATA[How to push all local git branches to remote Answer: Just remember one command: # git push --all origin<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/how-to-push-to-origin-but-a-different-branch-using-git" rel="bookmark" title="How to push to origin but a different branch using Git">How to push to origin but a different branch using Git </a></li>
<li><a href="http://www.linuxask.com/questions/updating-a-local-branch-from-the-remote-server-using-git" rel="bookmark" title="Updating a local branch from the remote server using git">Updating a local branch from the remote server using git </a></li>
<li><a href="http://www.linuxask.com/questions/clone-a-remote-mercurial-repository-over-ssh" rel="bookmark" title="Clone a remote Mercurial repository over SSH">Clone a remote Mercurial repository over SSH </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>How to push all local git branches to remote</p>
<p><strong>Answer:</strong></p>
<p>Just remember one command:</p>
<p><code># git push --all origin</code></p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/how-to-push-to-origin-but-a-different-branch-using-git" rel="bookmark" title="How to push to origin but a different branch using Git">How to push to origin but a different branch using Git </a></li>
<li><a href="http://www.linuxask.com/questions/updating-a-local-branch-from-the-remote-server-using-git" rel="bookmark" title="Updating a local branch from the remote server using git">Updating a local branch from the remote server using git </a></li>
<li><a href="http://www.linuxask.com/questions/clone-a-remote-mercurial-repository-over-ssh" rel="bookmark" title="Clone a remote Mercurial repository over SSH">Clone a remote Mercurial repository over SSH </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/how-to-push-all-local-git-branches-to-remote/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rewriting last Git commit</title>
		<link>http://www.linuxask.com/questions/rewriting-last-git-commit</link>
		<comments>http://www.linuxask.com/questions/rewriting-last-git-commit#comments</comments>
		<pubDate>Thu, 11 Jul 2013 05:46:06 +0000</pubDate>
		<dc:creator><![CDATA[Linux Ask!]]></dc:creator>
				<category><![CDATA[Git]]></category>
		<category><![CDATA[git]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=4274</guid>
		<description><![CDATA[Rewriting last Git commit Answer: Sometimes, when you regret your last commit and before it is pushed to remote, it is easy with the following commands: git add file1.txt file2.txt git commit -m 'Add some files' # Now you regret to include file2.txt git rm file2.txt git commit --amend # Edit the commit message in <a href='http://www.linuxask.com/questions/rewriting-last-git-commit' class='excerpt-more'>[...]</a><div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/how-to-merge-a-specific-file-from-another-branch-in-git" rel="bookmark" title="How to merge a specific file from another branch in Git">How to merge a specific file from another branch in Git </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-revert-a-bad-commit-in-svn" rel="bookmark" title="How to revert a bad commit in SVN">How to revert a bad commit in SVN </a></li>
<li><a href="http://www.linuxask.com/questions/edit-a-remote-file-with-vim-over-ssh" rel="bookmark" title="Edit a remote file with vim over SSH">Edit a remote file with vim over SSH </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>Rewriting last Git commit</p>
<p><strong>Answer:<br />
</strong></p>
<p>Sometimes,  when you regret your last commit and before it is pushed to remote, it is easy with the following commands:</p>
<pre><code>git add file1.txt file2.txt
git commit -m 'Add some files'

# Now you regret to include file2.txt
git rm file2.txt
git commit --amend # Edit the commit message in the editor
</code></pre>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/how-to-merge-a-specific-file-from-another-branch-in-git" rel="bookmark" title="How to merge a specific file from another branch in Git">How to merge a specific file from another branch in Git </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-revert-a-bad-commit-in-svn" rel="bookmark" title="How to revert a bad commit in SVN">How to revert a bad commit in SVN </a></li>
<li><a href="http://www.linuxask.com/questions/edit-a-remote-file-with-vim-over-ssh" rel="bookmark" title="Edit a remote file with vim over SSH">Edit a remote file with vim over SSH </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/rewriting-last-git-commit/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to merge a specific file from another branch in Git</title>
		<link>http://www.linuxask.com/questions/how-to-merge-a-specific-file-from-another-branch-in-git</link>
		<comments>http://www.linuxask.com/questions/how-to-merge-a-specific-file-from-another-branch-in-git#comments</comments>
		<pubDate>Sat, 12 Jan 2013 06:02:45 +0000</pubDate>
		<dc:creator><![CDATA[Linux Ask!]]></dc:creator>
				<category><![CDATA[Git]]></category>
		<category><![CDATA[git]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=4168</guid>
		<description><![CDATA[How to merge a specific file from another branch in Git Answer: You have two branches, develop and master. The develop branch contains a lot of commits but you only want to merge a particular commit (of two files), what would you do? You can use git cherry-pick but the easiest way to do and <a href='http://www.linuxask.com/questions/how-to-merge-a-specific-file-from-another-branch-in-git' class='excerpt-more'>[...]</a><div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/merge-changes-from-trunk-into-branch-in-svn" rel="bookmark" title="Merge changes from trunk into branch in SVN">Merge changes from trunk into branch in SVN </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-merge-a-branch-back-into-trunk-using-svn" rel="bookmark" title="How to merge a branch back into trunk using SVN">How to merge a branch back into trunk using SVN </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-push-to-origin-but-a-different-branch-using-git" rel="bookmark" title="How to push to origin but a different branch using Git">How to push to origin but a different branch using Git </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>How to merge a specific file from another branch in Git</p>
<p><strong>Answer:</strong></p>
<p>You have two branches, <strong>develop</strong> and <strong>master</strong>. The <strong>develop</strong> branch contains a lot of commits but you only want to merge a particular commit (of two files), what would you do?</p>
<p>You can use <strong>git cherry-pick </strong>but the easiest way to do and most people need is the following:</p>
<pre><code># git checkout master
# git checkout develop /path/to/file1
# git checkout develop /path/to/file2
..
git commit -m 'Merge changes from develop for file1 and file2'
</code></pre>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/merge-changes-from-trunk-into-branch-in-svn" rel="bookmark" title="Merge changes from trunk into branch in SVN">Merge changes from trunk into branch in SVN </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-merge-a-branch-back-into-trunk-using-svn" rel="bookmark" title="How to merge a branch back into trunk using SVN">How to merge a branch back into trunk using SVN </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-push-to-origin-but-a-different-branch-using-git" rel="bookmark" title="How to push to origin but a different branch using Git">How to push to origin but a different branch using Git </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/how-to-merge-a-specific-file-from-another-branch-in-git/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to make git ignore file mode changes?</title>
		<link>http://www.linuxask.com/questions/how-to-make-git-ignore-file-mode-changes</link>
		<comments>http://www.linuxask.com/questions/how-to-make-git-ignore-file-mode-changes#comments</comments>
		<pubDate>Sat, 05 Jan 2013 14:12:04 +0000</pubDate>
		<dc:creator><![CDATA[Linux Ask!]]></dc:creator>
				<category><![CDATA[Git]]></category>
		<category><![CDATA[git]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=4099</guid>
		<description><![CDATA[How to make git ignore file mode changes? Answer: In your current git repository, type # git config core.filemode false That's it.<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/how-do-i-make-git-ignore-mode-changes" rel="bookmark" title="How do I make git ignore mode changes">How do I make git ignore mode changes </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-ignore-dummy-files-e-g-from-cvs-svn-during-rsync" rel="bookmark" title="How to ignore dummy files (e.g. from CVS, SVN) during rsync?">How to ignore dummy files (e.g. from CVS, SVN) during rsync? </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-turn-off-selinux" rel="bookmark" title="How to turn off SELinux?">How to turn off SELinux? </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>How to make git ignore file mode changes?</p>
<p><strong>Answer:</strong></p>
<p>In your current <strong>git</strong> repository, type</p>
<p><code># git config core.filemode false</code></p>
<p>That's it.</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/how-do-i-make-git-ignore-mode-changes" rel="bookmark" title="How do I make git ignore mode changes">How do I make git ignore mode changes </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-ignore-dummy-files-e-g-from-cvs-svn-during-rsync" rel="bookmark" title="How to ignore dummy files (e.g. from CVS, SVN) during rsync?">How to ignore dummy files (e.g. from CVS, SVN) during rsync? </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-turn-off-selinux" rel="bookmark" title="How to turn off SELinux?">How to turn off SELinux? </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/how-to-make-git-ignore-file-mode-changes/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fix git&#8217;s fatal: index file corrupt</title>
		<link>http://www.linuxask.com/questions/fix-gits-fatal-index-file-corrupt</link>
		<comments>http://www.linuxask.com/questions/fix-gits-fatal-index-file-corrupt#comments</comments>
		<pubDate>Sat, 24 Nov 2012 04:14:33 +0000</pubDate>
		<dc:creator><![CDATA[Linux Ask!]]></dc:creator>
				<category><![CDATA[Git]]></category>
		<category><![CDATA[git]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=4077</guid>
		<description><![CDATA[Fix git's fatal: index file corrupt Answer: When you experienced when your git repository might return the following error when you perform the status command, e.g. # git status error: bad index file sha1 signature fatal: index file corrupt To fix it, simply type # rm -f .git/index Then # git reset That's it.<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/update-the-package-index-in-ubuntu" rel="bookmark" title="Update the Package Index in Ubuntu">Update the Package Index in Ubuntu </a></li>
<li><a href="http://www.linuxask.com/questions/set-the-default-index-page-for-apache" rel="bookmark" title="Set the default index page for Apache">Set the default index page for Apache </a></li>
<li><a href="http://www.linuxask.com/questions/force-mysql-to-use-a-specific-index-during-query-processing" rel="bookmark" title="Force MySQL to use a specific index during query processing">Force MySQL to use a specific index during query processing </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>Fix git's fatal: index file corrupt</p>
<p><strong>Answer:</strong></p>
<p>When you experienced when your git repository might return the following error when you perform the <strong>status</strong> command, e.g.</p>
<pre><code># git status
error: bad index file sha1 signature
fatal: index file corrupt
</code></pre>
<p>To fix it, simply type</p>
<p><code># rm -f .git/index</code></p>
<p>Then</p>
<p><code># git reset</code></p>
<p>That's it.</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/update-the-package-index-in-ubuntu" rel="bookmark" title="Update the Package Index in Ubuntu">Update the Package Index in Ubuntu </a></li>
<li><a href="http://www.linuxask.com/questions/set-the-default-index-page-for-apache" rel="bookmark" title="Set the default index page for Apache">Set the default index page for Apache </a></li>
<li><a href="http://www.linuxask.com/questions/force-mysql-to-use-a-specific-index-during-query-processing" rel="bookmark" title="Force MySQL to use a specific index during query processing">Force MySQL to use a specific index during query processing </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/fix-gits-fatal-index-file-corrupt/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Show the diff of last commit in svn</title>
		<link>http://www.linuxask.com/questions/show-the-diff-of-last-commit-in-svn</link>
		<comments>http://www.linuxask.com/questions/show-the-diff-of-last-commit-in-svn#comments</comments>
		<pubDate>Wed, 12 Sep 2012 03:04:23 +0000</pubDate>
		<dc:creator><![CDATA[Linux Ask!]]></dc:creator>
				<category><![CDATA[SVN]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=4009</guid>
		<description><![CDATA[Show the diff of last commit in svn Answer: Someone has just committed their changes to the svn and you want to find what have changed, just use the command: # svn diff -rPREV<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/how-to-revert-a-bad-commit-in-svn" rel="bookmark" title="How to revert a bad commit in SVN">How to revert a bad commit in SVN </a></li>
<li><a href="http://www.linuxask.com/questions/how-do-i-diff-the-changes-which-have-been-staged-but-not-committed-in-git" rel="bookmark" title="How do I diff the changes which have been staged but not committed in Git?">How do I diff the changes which have been staged but not committed in Git? </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-diff-two-remote-files-over-ssh" rel="bookmark" title="How to diff two remote files over ssh?">How to diff two remote files over ssh? </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>Show the diff of last commit in svn</p>
<p><strong>Answer:</strong></p>
<p>Someone has just committed their changes to the <strong>svn</strong> and you want to find what have changed, just use the command:</p>
<p><code># svn diff -rPREV</code></p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/how-to-revert-a-bad-commit-in-svn" rel="bookmark" title="How to revert a bad commit in SVN">How to revert a bad commit in SVN </a></li>
<li><a href="http://www.linuxask.com/questions/how-do-i-diff-the-changes-which-have-been-staged-but-not-committed-in-git" rel="bookmark" title="How do I diff the changes which have been staged but not committed in Git?">How do I diff the changes which have been staged but not committed in Git? </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-diff-two-remote-files-over-ssh" rel="bookmark" title="How to diff two remote files over ssh?">How to diff two remote files over ssh? </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/show-the-diff-of-last-commit-in-svn/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove SVN client credentials caching</title>
		<link>http://www.linuxask.com/questions/remove-svn-client-credentials-caching</link>
		<comments>http://www.linuxask.com/questions/remove-svn-client-credentials-caching#comments</comments>
		<pubDate>Tue, 04 Sep 2012 02:59:58 +0000</pubDate>
		<dc:creator><![CDATA[Linux Ask!]]></dc:creator>
				<category><![CDATA[SVN]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=4007</guid>
		<description><![CDATA[Remove SVN client credentials caching Answer: svn will store your credentials information at "~/.subversion/auth/svn.simple/" for caching to help you from typing password on every svn commands. In order to clean this cache, you can # rm -f ~/.subversion/auth/svn.simple/*<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/how-to-check-failed-login-attempt-in-ubuntu" rel="bookmark" title="How to check failed login attempt in Ubuntu">How to check failed login attempt in Ubuntu </a></li>
<li><a href="http://www.linuxask.com/questions/remove-un-staged-files-or-directories-from-git-repository" rel="bookmark" title="Remove un-staged files or directories from Git repository">Remove un-staged files or directories from Git repository </a></li>
<li><a href="http://www.linuxask.com/questions/downgrade-the-format-of-a-subversion-working-copy" rel="bookmark" title="Downgrade the format of a Subversion working copy">Downgrade the format of a Subversion working copy </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>Remove SVN client credentials caching</p>
<p><strong>Answer:</strong></p>
<p><strong>svn</strong> will store your credentials information at "<strong>~/.subversion/auth/svn.simple/</strong>" for caching to help you from typing password on every svn commands. In order to clean this cache, you can</p>
<p><code># rm -f ~/.subversion/auth/svn.simple/*</code></p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/how-to-check-failed-login-attempt-in-ubuntu" rel="bookmark" title="How to check failed login attempt in Ubuntu">How to check failed login attempt in Ubuntu </a></li>
<li><a href="http://www.linuxask.com/questions/remove-un-staged-files-or-directories-from-git-repository" rel="bookmark" title="Remove un-staged files or directories from Git repository">Remove un-staged files or directories from Git repository </a></li>
<li><a href="http://www.linuxask.com/questions/downgrade-the-format-of-a-subversion-working-copy" rel="bookmark" title="Downgrade the format of a Subversion working copy">Downgrade the format of a Subversion working copy </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/remove-svn-client-credentials-caching/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do I diff the changes which have been staged but not committed in Git?</title>
		<link>http://www.linuxask.com/questions/how-do-i-diff-the-changes-which-have-been-staged-but-not-committed-in-git</link>
		<comments>http://www.linuxask.com/questions/how-do-i-diff-the-changes-which-have-been-staged-but-not-committed-in-git#comments</comments>
		<pubDate>Fri, 03 Aug 2012 07:26:23 +0000</pubDate>
		<dc:creator><![CDATA[Linux Ask!]]></dc:creator>
				<category><![CDATA[Git]]></category>
		<category><![CDATA[git]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=3942</guid>
		<description><![CDATA[How do I diff the changes which have been staged but not committed in Git? Answer: Usually when you have not staged your changes, git diff is what you all need. But when you have staged the changes, then you need to use git diff --cached<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/remove-un-staged-files-or-directories-from-git-repository" rel="bookmark" title="Remove un-staged files or directories from Git repository">Remove un-staged files or directories from Git repository </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-diff-two-remote-files-over-ssh" rel="bookmark" title="How to diff two remote files over ssh?">How to diff two remote files over ssh? </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-ignore-blank-lines-when-creating-the-diff-of-two-files" rel="bookmark" title="How to ignore blank lines when creating the diff of two files">How to ignore blank lines when creating the diff of two files </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>How do I diff the changes which have been staged but not committed in Git?</p>
<p><strong>Answer:</strong></p>
<p>Usually when you have <strong>not </strong>staged your changes,<strong> git diff </strong>is what you all need. But when you have staged the changes, then you need to use</p>
<p><code>git diff --cached</code></p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/remove-un-staged-files-or-directories-from-git-repository" rel="bookmark" title="Remove un-staged files or directories from Git repository">Remove un-staged files or directories from Git repository </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-diff-two-remote-files-over-ssh" rel="bookmark" title="How to diff two remote files over ssh?">How to diff two remote files over ssh? </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-ignore-blank-lines-when-creating-the-diff-of-two-files" rel="bookmark" title="How to ignore blank lines when creating the diff of two files">How to ignore blank lines when creating the diff of two files </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/how-do-i-diff-the-changes-which-have-been-staged-but-not-committed-in-git/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
