summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 3cafb7d)
raw | patch | inline | side by side (parent: 3cafb7d)
author | Anand Kumria <wildfire@progsoc.org> | |
Sun, 10 Aug 2008 18:26:33 +0000 (19:26 +0100) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Tue, 12 Aug 2008 01:57:04 +0000 (18:57 -0700) |
Signed-off-by: Anand Kumria <wildfire@progsoc.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
contrib/fast-import/git-p4.txt | patch | blob | history |
index b16a8384bcfbfe33dc33e1076c64f5d36e75e803..0896abb9338b29a25e4be09d3c0baa9bc78fab9a 100644 (file)
incremental imports to optimally combine the individual git packs that each
incremental import creates through the use of git-fast-import.
-
-A useful setup may be that you have a periodically updated git repository
-somewhere that contains a complete import of a Perforce project. That git
-repository can be used to clone the working repository from and one would
-import from Perforce directly after cloning using git-p4. If the connection to
-the Perforce server is slow and the working repository hasn't been synced for a
-while it may be desirable to fetch changes from the origin git repository using
-the efficient git protocol. git-p4 supports this setup by calling "git fetch origin"
-by default if there is an origin branch. You can disable this using
-
- git config git-p4.syncFromOrigin false
-
Updating
========
git-p4 rebase
+Configuration parameters
+========================
+
+git-p4.syncFromOrigin
+
+A useful setup may be that you have a periodically updated git repository
+somewhere that contains a complete import of a Perforce project. That git
+repository can be used to clone the working repository from and one would
+import from Perforce directly after cloning using git-p4. If the connection to
+the Perforce server is slow and the working repository hasn't been synced for a
+while it may be desirable to fetch changes from the origin git repository using
+the efficient git protocol. git-p4 supports this setup by calling "git fetch origin"
+by default if there is an origin branch. You can disable this using:
+
+ git config [--global] git-p4.syncFromOrigin false
+
Implementation Details...
=========================