我们正在使用第三方PHP引擎来定期更新。这些版本保存在git中的一个单独的分支上,而我们的fork是主分支。
这样我们就可以从新版本的引擎中将补丁应用到我们的分支。
我的问题是,在我们的分支机构多次提交之后,我意识到引擎的初始导入是通过CRLF行结束完成的。
我将每个文件转换为LF,但这做了一个巨大的提交,删除了100k行并添加了100k行,这显然打破了我们打算做的事情:轻松合并来自第三方引擎的工厂版本的补丁。 / p>
我知道什么?我怎样才能解决这个问题?我的fork上已经有数百次提交。
在初始导入之后以及在分支我们自己的fork之前以某种方式执行行结尾修复提交并在历史记录中删除该大行结束提交之后,会有什么好处。
但是我不知道如何在Git中这样做。
谢谢!
答案 0 :(得分:34)
我终于设法解决了。
答案是:
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
在所有提交的所有树中修复所有行结尾后,我做了一个交互式rebase并删除了所有修复行结尾的提交。
现在我的回购清新,准备被推了:)。
请访问者注意:如果您的仓库已被推送/克隆,请不要这样做,因为它会使事情变得非常糟糕!
答案 1 :(得分:4)
展望未来,请使用git config --help
中记录的core.autocrlf
设置来避免此问题:
core.autocrlf
如果为true,则在从文件系统读取时,将文本文件行末尾的git转换
CRLF
设置为LF
,并在写入文件系统时反向转换。该变量可以设置为input
,在这种情况下,转换仅在从文件系统读取时发生,但文件在行末用LF
写出。根据文件的autocrlf
属性,或者如果未指定crlf
,文件被视为“文本”(即受crlf
机制约束),基于文件的内容。请参阅gitattributes。
答案 2 :(得分:3)
你看过git rebase
吗?
您需要重新建立存储库的历史记录,如下所示:
您需要了解的是,这将打破所有下游存储库 - 从您的父存储库克隆的存储库。理想情况下,你将从零开始。
更新:示例用法:
target=`git rev-list --max-count=3 HEAD | tail -n1`
get rebase -i $target
将为最近3次提交启动rebase会话。
答案 3 :(得分:2)
一个解决方案(不一定是最好的解决方案)是使用git-filter-branch重写历史记录以始终使用正确的行结尾。这应该是交互式rebase的更好解决方案,至少对于大量的提交;使用git-filter-branch也可以更容易地处理合并。
当然,假设历史未发布(存储库未被克隆)。
答案 4 :(得分:2)
我们将来会避免这个问题:
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;
}
?>