The gitattributes tag has no wiki summary.
8
votes
2answers
221 views
Is it possible to have all “git diff” commands use the “Python diff”, in all git projects?
When including the line
*.py diff=python
in a local .gitattributes file, git diff produces nice labels for the different diff hunks of Python files (with the name of the function where the lines ...
7
votes
4answers
303 views
GIT: ignore future revisions to a file
I have created a default version of a file included in a git repository. It's important that when someone clones the repository, they get a copy of this file. However, I would like to set git so ...
4
votes
1answer
172 views
use git's word-diff for latex files
I would like to have git diff outputs me regular diffs for all files, except *.tex. For *.tex files, I would like to see the output of git diff --word-diff.
I was playing around with .gitattributes ...
4
votes
3answers
211 views
To hook or not to hook - git
Our bespoke IDE outputs XML files with an encoding that makes them look like binary files. Diffs and merges of these files fail.
We can create ASCII versions of these files with the tr command. I ...
2
votes
1answer
150 views
How to determine files that are subjected to filter via gitattributes when filter is executed?
I have bunch of ruby scripts in a git repository and it seems to be really hard to enforce people to write properly indented code.
I also have a small ruby script that formats to code to specific ...
1
vote
0answers
74 views
gitattributes not setting merge driver correctly
I have the following directory structure:
project/
.git/
...
app/
...
config/
initializers/
braintree.rb
environments/
...
1
vote
1answer
78 views
Overwrite unstaged commits due to gitattributes eol settings
I have a fork that has automatic eol changes on cloning due to .gitattributes. This is fixed in upstream. I would like to merge upstream into my master; however, I am unable to get rid of these ...
0
votes
1answer
59 views
How do I set all files in a subdirectory to use a specific eol using gitattributes?
I've been trying to set specific files to always use lf and not crlf regardless of autocrlf on the local system.
I tried creating a .gitattributes at the root of the project that only contained ...
0
votes
1answer
457 views
Git, Kohana & PHPFog workflow
Kohana 3 includes environment constants, specifically PRODUCTION, STAGING, TESTING & DEVELOPMENT (discussion here).
It's been suggested that you set those constants using SetEnv in your .htaccess ...
0
votes
1answer
396 views
What is wrong with this git smudge/clean filter?
I want to apply this filter in my git repository to remove a section from a solution file during checkout and to add this section during commit.
This is the section i want to remove or add:
...
0
votes
1answer
297 views
How to setup gitattributes to filter part of a file?
I am using Visual Studio 2010 and git (git svn). My coworker uses pure svn with the Ankhsvn plugin.
When i try to open the file with the Git Source Control Provider enabled, Visual Studion complains:
...