Re: .gitignore behavior on Mac
From: Peter Lauri <hidden>
Date: 2016-06-15 22:57:19
But I just don't want to see that darn file. It is a config file that I have changed, and I don't want to need to stash it for each "git svn" action I want to perform... Any solution for that? On Sat, May 18, 2013 at 8:41 PM, John Keeping [off-list ref] wrote:
On Sat, May 18, 2013 at 08:36:42PM +0200, Peter Lauri wrote:quoted
Shouldn't this be valid? I would expect to NOT see the core/inc/config.inc.php in the "git status" output... Peters-MacBook-Air:dt-git plauri$ cat .gitignore .buildpath .project .settings/ web/pjotr.php core/inc/config.inc.php dt_error.log process_wrapper.sh Peters-MacBook-Air:dt-git plauri$ git status # On branch local/DT-7_gantt # Changes not staged for commit: # (use "git add <file>..." to update what will be committed) # (use "git checkout -- <file>..." to discard changes in working directory) # # modified: .gitignore # modified: core/inc/config.inc.phpcore/inc/config.inc.php is already in the repository. Git won't ignore files that are already tracked. If you remove the file from the index: git rm --cached core/inc/config.inc.php then you'll see it as deleted in "git status" but it won't appear in the untracked files section even though it's still there in the working tree.quoted
# Untracked files: # (use "git add <file>..." to include in what will be committed) # # out.ionel # tree.py no changes added to commit (use "git add" and/or "git commit -a") Peters-MacBook-Air:dt-git plauri$ -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html