我们正在与第三方PHP引擎,得到定期更新工作。 该版本保持在git的一个独立分支,而我们的叉子是主分支。
这样,我们就可以从补丁发动机的新版本应用到我们的叉。
我的问题是,经过多次提交到我们的分公司,我意识到,发动机的初始导入与CRLF行结束完成。
我每个文件转换为LF,但取得了巨大的承诺,以100K线取出,100K线增加,这显然打破了我们打算做的事:在从第三方引擎的工厂发布补丁容易合并。
什么我对子级不知道吗? 我怎样才能解决这个问题? 我已经在我们的叉数以百计的提交。
什么是好是莫名其妙地做了行尾固定在初始导入后和分支我们自己的叉子,并消除在结束后的历史承诺是巨大的行之前提交。
但是我不知道如何做到这一点在Git中。
谢谢!
我终于设法解决这个问题。
答案是:
git filter-branch --tree-filter '~/Scripts/fix-line-endings.sh' -- --all
fix-line-endings.sh包含:
#!/bin/sh
find . -type f -a \( -name '*.tpl' -o -name '*.php' -o -name '*.js' -o -name '*.css' -o -name '*.sh' -o -name '*.txt' -iname '*.html' \) | xargs fromdos
毕竟行结束在所有提交被固定在所有的树,我做了一个互动的底垫,并移除了固定行结束所有的提交。
现在我的回购是干净清爽,准备推:)
注意游客:不这样做,如果你的回购已被推/因为这会搞乱了严重的克隆!
展望未来,避免这一问题与core.autocrlf
设置,记录git config --help
:
core.autocrlf
如果为真,使得git的转换CRLF
在文本文件行结束LF
从文件系统中读取数据时,与反向写入文件系统时转换。 该变量可以被设置为input
,在这种情况下,转换只发生而从文件系统读取文件,但与写出LF
在线的端部。 的文件被认为是“文本”( 即要进行autocrlf
基于文件的机制) crlf
属性,或者如果crlf
是未指定的,基于文件的内容。 见gitattributes 。
你看git rebase
?
您将需要重新基础信息库的历史,具体如下:
- 犯行终止修复
- 启动底垫
- 离开第三方进口犯第一
- 应用该行终止修复
- 套用您的其他补丁
你做什么需要尽管明白的是,这将打破所有下游库-那些从你的父母回购克隆。 理想情况下,你会从那些从头开始。
更新 :使用范例:
target=`git rev-list --max-count=3 HEAD | tail -n1`
get rebase -i $target
将最后3个提交启动重订会话。
我们在未来避免这个问题:
1)每个人都使用它去掉尾部空格的编辑,我们保存所有文件与LF。
2)如果1)失败(它可以 - 有人不小心将其保存在CRLF无论何种原因),我们有一个预提交脚本检查CRLF字符:
#!/bin/sh
#
# An example hook script to verify what is about to be committed.
# Called by git-commit with no arguments. The hook should
# exit with non-zero status after issuing an appropriate message if
# it wants to stop the commit.
#
# To enable this hook, rename this file to "pre-commit" and set executable bit
# original by Junio C Hamano
# modified by Barnabas Debreceni to disallow CR characters in commits
if git rev-parse --verify HEAD 2>/dev/null
then
against=HEAD
else
# Initial commit: diff against an empty tree object
against=4b825dc642cb6eb9a060e54bf8d69288fbee4904
fi
crlf=0
IFS="
"
for FILE in `git diff-index --cached $against`
do
fhash=`echo $FILE | cut -d' ' -f4`
fname=`echo $FILE | cut -f2`
if git show $fhash | grep -EUIlq $'\r$'
then
echo $fname contains CRLF characters
crlf=1
fi
done
if [ $crlf -eq 1 ]
then
echo Some files have CRLF line endings. Please fix it to be LF and try committing again.
exit 1
fi
exec git diff-index --check --cached $against --
此脚本使用GNU grep和在Mac OS X,但它应该在其他平台上使用前进行测试(我们曾与Cygwin和BSD grep的问题)
3)如果我们发现有任何空白的错误,我们使用的是错误的文件,下面的脚本:
#!/usr/bin/env php
<?php
// Remove various whitespace errors and convert to LF from CRLF line endings
// written by Barnabas Debreceni
// licensed under the terms of WFTPL (http://en.wikipedia.org/wiki/WTFPL)
// handle no args
if( $argc <2 ) die( "nothing to do" );
// blacklist
$bl = array( 'smarty' . DIRECTORY_SEPARATOR . 'templates_c' . DIRECTORY_SEPARATOR . '.*' );
// whitelist
$wl = array( '\.tpl', '\.php', '\.inc', '\.js', '\.css', '\.sh', '\.html', '\.txt', '\.htc', '\.afm',
'\.cfm', '\.cfc', '\.asp', '\.aspx', '\.ascx' ,'\.lasso', '\.py', '\.afp', '\.xml',
'\.htm', '\.sql', '\.as', '\.mxml', '\.ini', '\.yaml', '\.yml' );
// remove $argv[0]
array_shift( $argv );
// make file list
$files = getFileList( $argv );
// sort files
sort( $files );
// filter them for blacklist and whitelist entries
$filtered = preg_grep( '#(' . implode( '|', $wl ) . ')$#', $files );
$filtered = preg_grep( '#(' . implode( '|', $bl ) . ')$#', $filtered, PREG_GREP_INVERT );
// fix whitespace errors
fix_whitespace_errors( $filtered );
///////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////
// whitespace error fixer
function fix_whitespace_errors( $files ) {
foreach( $files as $file ) {
// read in file
$rawlines = file_get_contents( $file );
// remove \r
$lines = preg_replace( "/(\r\n)|(\n\r)/m", "\n", $rawlines );
$lines = preg_replace( "/\r/m", "\n", $lines );
// remove spaces from before tabs
$lines = preg_replace( "/\040+\t/m", "\t", $lines );
// remove spaces from line endings
$lines = preg_replace( "/[\040\t]+$/m", "", $lines );
// remove tabs from line endings
$lines = preg_replace( "/\t+$/m", "", $lines );
// remove EOF newlines
$lines = preg_replace( "/\n+$/", "", $lines );
// write file if changed and set old permissions
if( strlen( $lines ) != strlen( $rawlines )){
$perms = fileperms( $file );
// Uncomment to save original files
//rename( $file, $file.".old" );
file_put_contents( $file, $lines);
chmod( $file, $perms );
echo "${file}: FIXED\n";
} else {
echo "${file}: unchanged\n";
}
}
}
// get file list from argument array
function getFileList( $argv ) {
$files = array();
foreach( $argv as $arg ) {
// is a direcrtory
if( is_dir( $arg ) ) {
$files = array_merge( $files, getDirectoryTree( $arg ) );
}
// is a file
if( is_file( $arg ) ) {
$files[] = $arg;
}
}
return $files;
}
// recursively scan directory
function getDirectoryTree( $outerDir ){
$outerDir = preg_replace( ':' . DIRECTORY_SEPARATOR . '$:', '', $outerDir );
$dirs = array_diff( scandir( $outerDir ), array( ".", ".." ) );
$dir_array = array();
foreach( $dirs as $d ){
if( is_dir( $outerDir . DIRECTORY_SEPARATOR . $d ) ) {
$otherdir = getDirectoryTree( $outerDir . DIRECTORY_SEPARATOR . $d );
$dir_array = array_merge( $dir_array, $otherdir );
}
else $dir_array[] = $outerDir . DIRECTORY_SEPARATOR . $d;
}
return $dir_array;
}
?>
一种解决方案(不一定是最好的一个)是使用git的过滤分支改写历史总是使用正确的行结束符。 这应该是更好的解决方案,互动变基,至少对于较大的提交数量; 也可能更容易对付使用Git滤波器分支合并。
当然,这是假设,历史没有公布 (版本库中不克隆)的。
文章来源: Line endings messed up in Git - how to track changes from another branch after a huge line ending fix?