summaryrefslogtreecommitdiffstats
path: root/git-p4.txt
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2012-09-18 15:30:42 -0700
committerJunio C Hamano <gitster@pobox.com>2012-09-18 15:30:42 -0700
commit8ce35d7cc1d82c9267b88efee4c3e81f0c6b3b9f (patch)
tree64cb83951d10712261e23b8b91ec2d039f4c2b17 /git-p4.txt
parent281fd394a268e17e15f0869620a8f8fcaf28fbd1 (diff)
downloadgit-htmldocs-8ce35d7cc1d82c9267b88efee4c3e81f0c6b3b9f.tar.gz
Autogenerated HTML docs for v1.7.12.1-382-gb0576
Diffstat (limited to 'git-p4.txt')
-rw-r--r--git-p4.txt24
1 files changed, 23 insertions, 1 deletions
diff --git a/git-p4.txt b/git-p4.txt
index 8228f33e3..beff6229c 100644
--- a/git-p4.txt
+++ b/git-p4.txt
@@ -163,7 +163,7 @@ All commands except clone accept these options.
--git-dir <dir>::
Set the 'GIT_DIR' environment variable. See linkgit:git[1].
---verbose::
+--verbose, -v::
Provide more progress information.
Sync options
@@ -269,6 +269,24 @@ These options can be used to modify 'git p4 submit' behavior.
Export tags from git as p4 labels. Tags found in git are applied
to the perforce working directory.
+--dry-run, -n::
+ Show just what commits would be submitted to p4; do not change
+ state in git or p4.
+
+--prepare-p4-only::
+ Apply a commit to the p4 workspace, opening, adding and deleting
+ files in p4 as for a normal submit operation. Do not issue the
+ final "p4 submit", but instead print a message about how to
+ submit manually or revert. This option always stops after the
+ first (oldest) commit. Git tags are not exported to p4.
+
+--conflict=(ask|skip|quit)::
+ Conflicts can occur when applying a commit to p4. When this
+ happens, the default behavior ("ask") is to prompt whether to
+ skip this commit and continue, or quit. This option can be used
+ to bypass the prompt, causing conflicting commits to be automatically
+ skipped, or to quit trying to apply commits, without prompting.
+
Rebase options
~~~~~~~~~~~~~~
These options can be used to modify 'git p4 rebase' behavior.
@@ -519,6 +537,10 @@ git-p4.labelExportRegexp::
Only p4 labels matching this regular expression will be exported. The
default value is '[a-zA-Z0-9_\-.]+$'.
+git-p4.conflict::
+ Specify submit behavior when a conflict with p4 is found, as per
+ --conflict. The default behavior is 'ask'.
+
IMPLEMENTATION DETAILS
----------------------
* Changesets from p4 are imported using git fast-import.