5

私と同僚はgit、Windows レポジトリのクローンにある特定のファイルを適切に動作させることができず、ひどい問題を抱えています。クローンは、OSX マシンで作成されたリポジトリをクローンすることによって作成されています。autocrlf を true に設定しましたが、問題は、ファイルにgit触れたことがない (エディターで開いていない) にもかかわらず、変更されたと思われるファイルを定期的に見つけることです。

次の出力は問題を示しています。

$ git status                                                                                                 
# On branch master                                                                                           
# Your branch is behind 'origin/master' by 27 commits, and can be fast-forwarded.                            
#                                                                                                            
# Changed but not updated:                                                                                   
#   (use "git add <file>..." to update what will be committed)                                               
#   (use "git checkout -- <file>..." to discard changes in working directory)                                
#                                                                                                            
#       modified:   Web Applications/webclient/language/en/lang_copyitems.ini                                
#                                                                                                            
no changes added to commit (use "git add" and/or "git commit -a")                                            

Administrator@windows-dev ~/Documents/Workspace/prestige.git                                                 
$ git diff "Web Applications/webclient/language/en/lang_copyitems.ini"                                       
diff --git a/Web Applications/webclient/language/en/lang_copyitems.ini b/Web Applications/webclient/language/
index 800c188..ed11c0e 100644                                                                                
--- a/Web Applications/webclient/language/en/lang_copyitems.ini                                              
+++ b/Web Applications/webclient/language/en/lang_copyitems.ini                                              
@@ -1,12 +1,12 @@                                                                                            
-<EF><BB><BF>   [Header]                                                                                     
-       Description=Language strings for 'copyitems.php'                                                     
-                                                                                                            
-       [Messages]                                                                                           
-       300=Copy                                                                                             
-       301=Close                                                                                            
-       302=COPY STORIES                                                                                     
-       303=Name                                                                                             
-       304=In Queue                                                                                         
-       305=New Name                                                                                         
-       306=Items to Copy                                                                                    
-       308=This item has mandatory metadata fields that are not correctly set. Click any part of this messag
+<EF><BB><BF>   [Header]                                                                                     
+       Description=Language strings for 'copyitems.php'                                                     
+                                                                                                            
+       [Messages]                                                                                           
+       300=Copy                                                                                             
+       301=Close                                                                                            
+       302=COPY STORIES                                                                                     
+       303=Name                                                                                             
+       304=In Queue                                                                                         
+       305=New Name                                                                                         
+       306=Items to Copy                                                                                    
+       308=This item has mandatory metadata fields that are not correctly set. Click any part of this messag

Administrator@windows-dev ~/Documents/Workspace/prestige.git                                                 
$ git checkout HEAD "Web Applications/webclient/language/en/lang_copyitems.ini"                              

Administrator@windows-dev ~/Documents/Workspace/prestige.git                                                 
$ git status                                                                                                 
# On branch master                                                                                           
# Your branch is behind 'origin/master' by 27 commits, and can be fast-forwarded.                            
#                                                                                                            
# Changed but not updated:                                                                                   
#   (use "git add <file>..." to update what will be committed)                                               
#   (use "git checkout -- <file>..." to discard changes in working directory)                                
#                                                                                                            
#       modified:   Web Applications/webclient/language/en/lang_copyitems.ini                                
#
4

2 に答える 2

7

GitHub ガイドで示されているように、この設定の問題は、リポジトリのチェックアウト中に自動変換が行われることです...

つまり、変更をトリガーするためにファイルを開く必要はありません。

false のままautocrlfにして、改行文字を尊重できるエディターでそれらの Windows ファイルを開くことはできませんか?

注(ここに示されています)、一部のファイルを除いて変換が必要な場合は、親ディレクトリに .gitattributes を次のように追加できます。

myFile -crlf

ファイルでは、属性をパス (またはパターン) に設定するか、設定を解除します (マイナス記号を使用)。属性は、ファイルがオプションの影響を受けるかどうかを示す属性
です。設定を解除すると、Git はファイルの行末を台無しにしません。crlfcore.autocrlf

于 2009-07-30T12:57:09.493 に答える