1. 15 8月, 2008 2 次提交
  2. 12 8月, 2008 9 次提交
  3. 24 7月, 2008 1 次提交
  4. 27 6月, 2008 1 次提交
    • J
      Add 'git-p4.allowSubmit' to git-p4 · 4c2d5d72
      Jing Xue 提交于
      I'm working with a perforce repo using git-p4. There are some config
      files which I need to change locally according to my environment. I'm
      using a 'local' git branch to park these changes. And I want to avoid
      accidentally checking them into p4 just by doing "git p4 submit"
      mindlessly without realizing which branch I'm actually on.
      
      This patch adds a new git config, 'git-p4.allowSubmit', which is a
      whitelist of branch names. "git p4 submit" will only allow submissions
      from local branches on the list. Useful for preventing inadvertently
      submitting from a strictly local branch.
      
      For backward compatibility, if this config is not set at all,
      submissions from all branches are allowed.
      Signed-off-by: NJing Xue <jingxue@digizenstudio.com>
      Acked-By: NSimon Hausmann <simon@lst.de>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      4c2d5d72
  5. 28 3月, 2008 1 次提交
  6. 13 3月, 2008 3 次提交
  7. 04 3月, 2008 1 次提交
  8. 27 2月, 2008 6 次提交
  9. 07 2月, 2008 1 次提交
  10. 04 2月, 2008 4 次提交
  11. 21 11月, 2007 1 次提交
  12. 16 11月, 2007 1 次提交
  13. 02 11月, 2007 2 次提交
  14. 20 10月, 2007 2 次提交
    • C
      git-p4 support for perforce renames. · d9a5f25b
      Chris Pettitt 提交于
      The current git-p4 implementation does support file renames. However, because
      it does not use the "p4 integrate" command, the history for the renamed file is
      not linked to the new file.
      
      This changeset adds support for perforce renames with the integrate command.
      Currently this feature is only enabled when calling git-p4 submit with the -M
      option. This is intended to look and behave similar to the "detect renames"
      feature of other git commands.
      
      The following sequence is used for renamed files:
      
          p4 integrate -Dt x x'
          p4 edit x'
          rm x'
          git apply
          p4 delete x
      
      By default, perforce will not allow an integration with a target file that has
      been deleted. That is, if x' in the example above is the name of a previously
      deleted file then perforce will fail the integrate. The -Dt option tells
      perforce to allow the target of integrate to be a previously deleted file.
      Signed-off-by: NChris Pettitt <cpettitt@gmail.com>
      Signed-off-by: NSimon Hausmann <simon@lst.de>
      d9a5f25b
    • S
      git-p4: When skipping a patch as part of "git-p4 submit" make sure we... · 20947149
      Simon Hausmann 提交于
      git-p4: When skipping a patch as part of "git-p4 submit" make sure we correctly revert to the previous state of the files using "p4 revert".
      Signed-off-by: NSimon Hausmann <simon@lst.de>
      20947149
  15. 16 10月, 2007 1 次提交
  16. 23 9月, 2007 1 次提交
  17. 04 9月, 2007 3 次提交