1
vote
5answers
65 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, ...
1
vote
1answer
36 views

How to .gitignore files recursively

I'm trying to avoid the following pattern in my .gitignore file. MyPrject/WebApp/Scripts/special/*.js MyPrject/WebApp/Scripts/special/*/*.js MyPrject/WebApp/Scripts/special/*/*/*.js ...
1
vote
0answers
39 views

how to avoid a files get override on server using git?

I have followed following mentioned link & but failed .gitignore file not ignoring Here is the situation: I have download script on server A, which download the files & kept it into the ...
1
vote
1answer
34 views

git merge omits files within ignored folder?

I have a branch that contains a folder resources/ that is in the .gitignore. However, within this folder are a few files that are managed by git. (We use this for 3rdparty-libraries that we compile ...
1
vote
1answer
22 views

How can I untrack/ignore a folder in an old branch without commiting the new changes?

Basically I accidentally added the 'files' folder to my commits, so I have four old branches of development that have the 'files' folder listed, with all the files. I don't want to make any other ...
0
votes
1answer
24 views

How to keep .gitignored files off my gh-pages branch?

In my global .gitignore file I chose to keep my IDE folders out of my versioning. So in my master branch are folders like .idea/ or *.iml files. If I now switch to branch gh-pages git keeps those IDE ...
2
votes
1answer
39 views

.gitignore alternative in Perforce

We've been using github enterprise account to host a number of projects in the cloud. Now we are moving to perforce on-premises installation. We are mostly developing in ASP.NET MVC + using ...
-1
votes
2answers
39 views

git cant add . or comit or whatever with buged files

I saw a lot of questions in google like this but i cant figure it out what exactly to do. Git status still display this files... and when i push files to remote github repo... not all files are ...
0
votes
3answers
36 views

Trying to get repeating pattern in .gitignore

I've got repeating sections I want to consolidate with wildcards somehow and I'm not a regex guy. I tried what I thought was obvious (replace ClassLib/bin/beta4 with /ClassLib/bin/*, etc) but id did ...
0
votes
1answer
45 views

Recursive git update-index --assume-unchanged

I'm trying to run the following: git update-index --assume-unchanged myFolderToIgnore Where "myFolderToIgnore" is a folder. However it fails saying its "unable to mark" it. So I tried: git ...
-1
votes
1answer
20 views

How to pull a directory that is in .gitignore?

In the .gitignore is a directory that I would need to pull on my localhost. I don't see this directory in the project structure o Github, but when I try to search it, I see this directory in the ...
0
votes
3answers
35 views

“git add .” adds ignored files

I have a gitignore file ~\.gitignore_global with several patterns. I added a directory to my source, and run git add . Then when I run git status it does show me that the old ignored ...
4
votes
1answer
86 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
30 views

prestashop admin changes / file changes

In Prestashop, when a change takes place in a module configuration, where is located the physical change in the files directory? I ask because I use git versioning and I wan this to be accounted for, ...
1
vote
2answers
85 views

Git: how to add a file but not track it [duplicate]

In our .gitignore file we have database.php because it's a db config file which needs to be specific to each developer's local installation. However, every time I checkout the branch I have to ...
1
vote
3answers
93 views

How can I version my .git/config file?

I have a .gitignore file like the following: .* !.gitignore And I would like to version my .git/config file such that when I do a git pull my .git/config file updates automatically. How can I do ...
2
votes
3answers
39 views

Ignore certain changes for git commit

Members of our team uses different version of visual studio, and VS seems to automatically update the sln file with code like: Microsoft Visual Studio Solution File, Format Version 11.00 # Visual C# ...
1
vote
1answer
83 views

gitignore all files in all subdirectories except xml files

I have a directory structure similar to this: root/ .gitignore subdir/ .gitignore subsubdir1/ file.xml image.png subsubdir2 file.xml image.jpg I want to ...
0
votes
1answer
20 views

Allow designer to upload images - restrict access trough ssh or git user or gitignore?

Here's the thing: We are developing and we push and commit etc. Our designers just finish an image edition and it would be nice for the workflow, to allow the designers to place their images ...
0
votes
3answers
49 views

.gitignore for Lua projects

I've noticed that GitHub does not have a .gitignore template for Lua projects. Are there any specific files/file extensions which should be excluded by default from source control for a Lua project? ...
0
votes
0answers
62 views

How can I make git ignore files introduced by modman?

I would like to use an extension from a separate repository in a Magento site I'm working on. To keep the version of that extension fixed, I've cloned it into a submodule of the Magento integration. ...
0
votes
2answers
22 views

git- filter certain file

I have a constants file, this file is needed but every developer keeps changing this for his environment and often pushes this changed file. Is there a way that there can be a filter where in this ...
0
votes
1answer
57 views

How to ignore a specific project with .gitignore [duplicate]

I have the following solution structure SlnFolder/ Project1/ Project2ToBeExcluded/ Project3/ .gitignore I copied this .gitignore as a basis. What I try to achieve is adding ...
0
votes
1answer
36 views

Creating a per module git repo environment for magento module development on one site

I want to develop multiple Magento modules on one fresh install of Magento 1.7 so that each module can be pushed to an online repo and tracked individually. I initially began by following this ...
1
vote
1answer
51 views

how to add all currently untracked files/folders to git ignore?

I initialized the git repository and made a first commit. Now, in this directory i run ./configure and ./make all so that it populates a lot of extra files/folders don't want to track. What i would ...
0
votes
1answer
43 views

.gitignore difference between *.class and .class

What's the difference between those two lines in .gitignore file? *.class .class Thanks in advance.
1
vote
1answer
80 views

Git add . does add files listed in .gitignore

I want to stop tracking certain files in Git that I've added to the .gitignore file. I used git rm --cached (and also tried git rm -r --cached .) but after running git add ., a git commit --dry-run ...
-1
votes
2answers
54 views

From where does .gitignore have effect? [closed]

(Very new to git!) The .gitignore indications have effect because the gitignore file is saved locally and it prevents the push of some special filesor because the gitignore file is already ...
4
votes
2answers
125 views

Extended regular expressions (ERE) for .gitignore

Is there a way to use extended regular expressions(ERE) in a .gitignore file? For example I want to use the + repetition character in a .gitignore file. Is there a way to do that?
0
votes
1answer
82 views

.gitignore for everything inside the xcuserdata folder does not ignore an xcuserstate file

I'm working in a Xcode project, and I'm trying to configure the .gitignore to not get anything inside the xcuserdata folder. I have the following .gitignore: # Xcode .DS_Store */build/* *.pbxuser ...
1
vote
2answers
66 views

How do I tell git to ignore files that start with a tilde?

My text editor creates swap files that start with a tilde. I accidentally checked on of these into git. How do I tell git to ignore any files like this anywhere in my project tree? So I had ...
0
votes
1answer
39 views

.gitignore exclusion when a folder name is unknown

This is my folder structure (in find * Unix format) Project Project/hi.txt Project/userdata Project/userdata/username Project/userdata/username/info.txt Project/userdata/username/cool ...
1
vote
2answers
39 views

GIT: How to keep ignored files when switching branches?

I have an App.Local.config file which each developer has their own settings in. I do not want this file checked versioned in the GIT repo as every time it would be overwritten by another developers ...
0
votes
3answers
63 views

.gitignore still ignoring removed items [duplicate]

I have a standard .gitignore file that I include in every project. One of the lines in there ignores "bin". It so happens, in this particular project, I actually want a /bin directory. I removed ...
3
votes
3answers
151 views

git repository ignoring all .dlls

Title says it all. I am trying to add my NuGet packages to the repository. Everything but the .dll files are being detected. The gitignore file contains no references to *.dll. The .dll files don't ...
0
votes
2answers
70 views

Git: Revert a file that is in my .gitignore

I want to revert a file in Git to a previous commit. The file is ignored by my .gitignore file. In my most recent commit, I accidentally forced it in. This question answers how to revert any ...
1
vote
1answer
37 views

Ignoring a directory…but not a subdirectory or two

I always thought I knew how to ignore and negate patterns, but I'm stumped. I have a baseline Drupal install and I'd like to ignore everything in the sites/ folder except for a couple of specific ...
0
votes
1answer
68 views

Having trouble “untracking” file (ignore further changes to tracked file)

I have an issue on git. Recently I made a mistake and added a directory to my repo by using git add -f path/to/folder. Now I'm trying really hard to ignore this folder but nothing works. So far I did ...
5
votes
1answer
86 views

What is syntax for ignoring a directory in Git?

When I want to add an entire directory to my .gitignore, what is the syntax? The directory-to-ignore is in my root directory. Should it be: 1) directory-to-ignore 2) directory-to-ignore/ 3) ...
1
vote
3answers
227 views

git .gitignore whitelist

I'm trying to whitelist the directory(and it's contents) SupplierName in my Zend Framework 2 vendor directory. The original .gitignore file in /vendor looks like this: # Add here the vendor path ...
1
vote
1answer
86 views

Git says I am ahead by 2 commits

I have a git repo on Github, and a git repo on my web server. Whenever I do git pull origin master to get the updates made on Github, it says Your branch is ahead of 'origin/master' by 6 commits. ...
1
vote
1answer
54 views

Git push only images to non-origin remote

I have a git repo already set up, but I want to create another remote repository/branch to only push the image files to (on Amazon S3 cdn). Subfolders containing images also need to be pushed. Any ...
0
votes
1answer
60 views

.gitignore: Ignore one specific directory and that one only [duplicate]

I have this directory structure ./bin/<java class files> ./sometool/bin/<files for the tool> ...as well as some other files and directories. It seens that if I want to avoid tracking ...
1
vote
1answer
132 views

Subfolders in .gitignore

I have many subfolders in my repo, in which there are few build/ directories I'd like to ignore when committing my code. As I understand it, there are two ways to ignore all of the folders: */build/ ...
2
votes
2answers
50 views

Cancelling git push and ignore additional folder

I want to cancel the git push. I've done it with cntrl + C command. I reset --mixed to my old status. Add the forgetten directory to my gitignore file, But when I do the git push again , it still ...
0
votes
1answer
37 views

Not sure about the next step in “Getting Started With Python on Heroku”

https://devcenter.heroku.com/articles/python I'm trying to store my app in Git, but I'm not sure how to proceed with the first part: venv *.pyc Where do I type this? What do I have to ...
1
vote
4answers
581 views

Suitable `.gitignore` For Node.js

Tree structure That's how my Node.js project is organized: / | - node_modules [+ INCLUDE] | | - my-mod1 | | | - node_modules [- IGNORE] | | | | - external-mod1 | | ...
0
votes
1answer
123 views

Regular expression where * matches all characters except back slash and new line

Here is what I'm trying to implement Link to gitignore documentation: gitignore manpage Otherwise, git treats the pattern as a shell glob suitable for consumption by fnmatch(3) with the ...
1
vote
1answer
69 views

prevent git from overriding tracked ignored files during a pull

So there is a file that is already tracked by git call it file.php...This is in a collaborative environment I made changes to that file that I don't want to have it committed but I want the changes ...
2
votes
2answers
33 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 2 3 4 5 8