File tree Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -232,6 +232,31 @@ git-p4.skipUserNameCheck
232
232
When submitting, git-p4 checks that the git commits are authored by the current
233
233
p4 user, and warns if they are not. This disables the check.
234
234
235
+ git-p4.detectRenames
236
+
237
+ Detect renames when submitting changes to Perforce server. Will enable -M git
238
+ argument. Can be optionally set to a number representing the threshold
239
+ percentage value of the rename detection.
240
+
241
+ git config [--global] git-p4.detectRenames true
242
+ git config [--global] git-p4.detectRenames 50
243
+
244
+ git-p4.detectCopies
245
+
246
+ Detect copies when submitting changes to Perforce server. Will enable -C git
247
+ argument. Can be optionally set to a number representing the threshold
248
+ percentage value of the copy detection.
249
+
250
+ git config [--global] git-p4.detectCopies true
251
+ git config [--global] git-p4.detectCopies 80
252
+
253
+ git-p4.detectCopiesHarder
254
+
255
+ Detect copies even between files that did not change when submitting changes to
256
+ Perforce server. Will enable --find-copies-harder git argument.
257
+
258
+ git config [--global] git-p4.detectCopies true
259
+
235
260
Implementation Details...
236
261
=========================
237
262
You can’t perform that action at this time.
0 commit comments