Tagged Questions
1
vote
5answers
74 views
Ignore specific changes to a file in git, but not the entire file
I have a file in a git repository that has a local change on it. I want to have git ignore the local change forever, but not the file. In particular,
If the file isn't touched besides this change, ...
0
votes
1answer
20 views
Ignore a git directory in composer package
I have composer library hosted as a package on Packagist through GitHub. The repository includes a directory named sample with some samples on how to use the code and this directory is really not ...
1
vote
1answer
14 views
File not ignore not excluded not assumed unchanged Git
There's a configuration file that I want out of my projects as to not have permanent conflicts with all my co-workers.
At first I put in my .gitignore and it worked just fine, however being ignored ...
4
votes
1answer
90 views
How to tell git to ignore individual lines, i.e. gitignore for specific lines of code
.gitignore can ignore whole files, but is there a way to ignore specific lines of code while coding?
I frequently and repeatedly add the same debug lines in a project, only to have to remember to ...
0
votes
1answer
34 views
Log file on Git (Heroku)
Hi if my question is asked before i am sorry but i cant find exact problem. and i am new at github so i coudn't find my answer.
my problem is i have a facebook app on heroku (php). when users enter my ...
0
votes
1answer
52 views
Commit or discard the changes and try again
I got a problem when I wanted to push source code to remote control. But xcuserstate file was always changed, and Git announce "Commit or discard the changes and try again". So I tried to ignore ...
0
votes
1answer
44 views
How do I ignore this eclipse file in Git?
I tried adding it to my global .gitignore but it is still showing up as an untracked file when I do git status.
researchProject/.externalToolBuilders/org.eclipse.wst.jsdt.core.javascriptValidator ...
2
votes
2answers
70 views
How can always ignore a file while merge
I have a configuration file that is different in two branches.
I want that this config file is tracked inside each branch but always ignored when merging branches.
So, after i merge the two branches, ...
2
votes
3answers
61 views
How to except a file/folder from versioning, but keep it in the repository in Git?
With git rm <file> a file can be deleted locally, removed from the versioning, and deleted on the repository. git rm --cached <file> does nearly the same, but keeps the file in the local ...
0
votes
1answer
121 views
git-svn clone ignore-paths regular expression for folders
Am trying to do a git-svn clone to import all the files in SVN to GIT. The command that was given was this;
git svn clone --stdlayout --ignore-paths='(/cache|/tmps|/file/conf/setting.xml)' ...
2
votes
4answers
240 views
Git - Ignore files during merge
I have a repo called myrepo on the remote beanstalk server.
I cloned it to my local machine. Created two additional branches: staging and dev.
Pushed these branches to remote as well.
Now:
local ...
2
votes
2answers
36 views
Git Ignore strangeness
In my repo I have the following directory structure:
/
|-dir1
| |-file1
| |-file2
| |-file3
|-dir2
| |-file4
| |-file5.derp
| |-file6
|-dir3
|-file7
|-file8
My ...
1
vote
3answers
40 views
Workaround git commit
Lets say I have 3 git commits:
Commit changes on sidebar
Commit changes on footer
Commit changes on header
Now lets assume I have went trough spiritual awakening and realized that only changes I ...
1
vote
4answers
65 views
Git- Why .txt file is not ignored
I need to ignore .txt file in git. To do so i have included *.txt in the .gitignore file.But when i edit something in one of my .txt
file git is still tracking it. Where is the problem or do i make ...
1
vote
0answers
65 views
How can I ignore whitespace in the NetBeans merge tool
How do I ignore leading and trailing whitespace in NetBeans when resolving conflicts during a git merge.
Under Option > Miscellaneous > Diff you can set the diff tool to ignore leading an trailing ...
1
vote
1answer
472 views
Ignore new commits for git submodule
Background
Using Git 1.8.1.1 on Linux. The repository looks as follows:
master
book
The submodule was created as follows:
$ cd /path/to/master
$ git submodule add ...
1
vote
1answer
100 views
Can git-stash ignore modifications to a tracked file
I am working on a project which has a bit of an uncommon behaving thing:
One of the files in the source code is a file that contains serious code, but it can edit itself to also include some ...
0
votes
1answer
45 views
How to check out a file, but then ignore it from syncs then-after
For files like .project files... i do want those files checked in initially...
however... after the initial git clone, the user will one time only edit this .project file (different for each ...
1
vote
2answers
88 views
How to remove files that are listed in the .gitignore but still on the repository? [duplicate]
Possible Duplicate:
Show ignored files in git
I have some files in my repository that should be ignored, i added them to the .gitignore but, of course, they are not removed from my ...
6
votes
3answers
152 views
Git - Temporarily ignore trivial changes to files
I'm looking for a way to 'hide' minor changes made to a few files in Git, such that they will not show up in git status until a different change is made to those files.
Example: I have a java file ...
-1
votes
2answers
568 views
Gitignore doesn't work properly
I have follwoing dir structure
and here is content of .gitignore
conf.php
The problem is, when I change contents conf.php and try to commit something, GIT detects conf.php as changed file again. ...
0
votes
1answer
26 views
Possible to send a warning about a (specific) changed file in Git?
I have a file which needs certain lines for the production server (and those lines to be commented out on the backup server and personal boxes). Since it doesn't seem possible for Git to exclude ...
1
vote
2answers
164 views
Can git ignore specific commented debug code? [duplicate]
As a front end developer, I frequently add code to hide backend devs' error messages ;)
Is there a way of getting git to ignore code commented in a certain way? eg
.error { display:none; } // ...
1
vote
1answer
809 views
How is ignore-paths evaluated in git svn?
I have a simple repo structure like this:
trunk
code
othercode
doc
misc
branches
b1
code
othercode
doc
misc
b2
tags
t1
t2
I'm trying ...
1
vote
2answers
475 views
How to ignore a file or directory in git, be it tracked, untracked or even part of commit
I want to completely ignore a part of a git repository. The directory is currently tracked in the repository and I'd like to ensure that
whenever anybody changes its contents in the upstream ...
1
vote
4answers
361 views
git ignore file still commits logs
I'm read all kinds of post on this and I just can't get it to work.
in my .ignore file I have
*/[Ll]ogs/*
Although I have tried about a dozen other variations, everything short of explicitly ...
3
votes
2answers
164 views
Is it safe to use the same ignores file for Git, Mercurial, and Bazaar?
Git, Mercurial, and Bazaar all seem to have similar formats for their ignore file (.gitignore, .hgignore, .bzrignore [see also bzr patterns]).
In order to improve synchronization of the global ignore ...
4
votes
2answers
84 views
how to deal with local/dev only code using git
if i have some local debug code or a development web services ip in my sources that i want to keep medium to long term locally, but don't want it in my git repo, what is the best way to accomplish ...
8
votes
2answers
1k views
git update-index --assume-unchanged returns error
git update-index --assume-unchanged returns fatal: Unable to mark file
What is the remedy for this please? Also, what is that it is complaining and why? Appreciate your help.
/sreraku
1
vote
1answer
84 views
how to implement something like a VCS status/ignore program?
in $dir, I want to get an overview of all files/dirs (recursively), but:
exclude all files/dirs which are included in $list (assume $list is newline separated)
only include the most-toplevel ...
0
votes
1answer
89 views
Is there a way to add to gitignore on the fly?
Is there a way to do this, for example?
git ignore file1, file2, file3
2
votes
1answer
77 views
Ignore a file in git but have it downloaded when the project is cloned
I have a file that suffers modification every time I run my project. Thus, I don't want git to track it and so I add it to my .gitignore file.
However, I do wish for the file to be pulled when ...
1
vote
3answers
210 views
git diff: ignore renaming of variables
While doing some refactoring, I renamed a variable from oldName to newName. Is there a way to tell the git diff command to ignore differences where oldName is now newName? I want to do this to focus ...
0
votes
1answer
356 views
Why does Git keep ignoring subfolder
I have this .gitignore file:
# Ignore wordpress
/wordpress/
/wordpress/*
# Except the wp-content folder
!/wordpress/wp-content/
!/wordpress/wp-content/*
But when I change something in wp-content ...
4
votes
2answers
338 views
Using git-svn to ignore a file just in the svn repo?
I'm new to git-svn and I'm trying to mirror an SVN repo in git. However, I'd like to add a readme.txt file for the git repo (show it shows up in places like github) but ignore that file in the SVN ...
45
votes
7answers
13k views
git ignore vim temporary files
What is the correct way to make git ignore temporary files produced by vim in all directories (either globally across the system or locally for a single project)?
1
vote
1answer
610 views
git diff to ignore patterns in files
I have a problem with git diff. Let me first fill you in on the history.
I have just been given a rather unpopular project from a customer. The problem is that they have 2 branches in their scm. ...
39
votes
1answer
12k views
Git diff -w ignore whitespace only at start & end of lines
I love to use git diff -w to ignore whitespace differences. But, I just noticed that it ignores even whitespace differences in the middle of lines. How could I only ignore whitespace differences that ...
4
votes
2answers
193 views
Ignoring a directory chain in git?
I need to ignore the following.
In paths like /a/b/c/d/e/f/g, I need to ignore /d/e/f/g. I also need to be able to ignore every place /d/e/f/g appears beneath a. I tried d/e/f/g, but that did not ...
5
votes
4answers
2k views
Git ignore deleted files
Ok heres my situation.
I have a website project that has more than 50,000 unimportant files (to development) in some directories.
/website.com/files/1.txt
/website.com/files/2.txt
...
29
votes
3answers
24k views
Git ignore sub folders
I have a lot of projects in my .Net solution. I would like to exclude all "bin/Debug" and "bin/Release" folders (and their contents), but still include the "bin" folder itself and any dll's contained ...
26
votes
2answers
5k views
How to I add something to the .gitignore so that the match is not recursive?
How to I add something to the .gitignore so that the match is not recursive?
For example, I wish to ignore the directory foo and the file bar.txt in the current directory, but not any that exist in ...
3
votes
2answers
993 views
Adding folders to a git repository while ignoring some subfolders
Im trying to add a directory "foo" to my repo, but there are some sub dirs lets call them "bar1", "bar2", "bar3" and "bar4"
Now I want to add foo to my repo, while ignoring foo/bar2 and foo/bar3
is ...
323
votes
10answers
43k views
.gitignore for Visual Studio Projects and Solutions
Which files should I include in .gitignore when using Git in conjunction with Visual Studio Solutions (.sln) and Projects?
Community Wiki:
#OS junk files
[Tt]humbs.db
*.DS_Store
#Visual Studio ...
76
votes
3answers
15k views
git ignore files only locally
Can I ignore files locally without polluting the global git config for everyone else? I have untracked files that are spam in my git status but I don't want to commit git config changes for every ...
17
votes
5answers
6k views
Is there an ignore command for git like there is for svn?
I am a new user to git and I am starting a new project. I have a bunch of dot files that I would like to ignore. Is there an ignore command for git like there is for svn?
437
votes
4answers
69k views
How do I make git ignore mode changes (chmod)?
I have a project in which I have to change the mode of files (chmod) to 777 while developing, but which should not change in the main repo.
git picks up on chmod -R 777 . and marks all files as ...
16
votes
1answer
6k views
working with .git/info/exclude too late
I usually do this:
git init
git add .
git commit .
And then I realize that it's about to add my nbproject directory, which I want excluded/ignored. Sometimes, I even check in this directory. Had I ...
1
vote
3answers
407 views
Started using git recently … just noticed clones of my files with ' ~ ' appended in the end… why is this happening
I used git to commit changes in my repository,
followed these steps
git add .
git commit -m "message"
but noticed a clone of the file where changes were made also present in the repository
new ...
70
votes
4answers
15k views
Ignore modified (but not committed) files in git?
Can i tell git to ignore files that are modified (deleted) but should not be committed?
The situation is that i have a subdir in the repo which contains stuff I'm not interested in at all, so I ...


