diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-03-04 15:02:28 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-03-04 15:02:28 -0800 |
commit | 6d74e5c9dbe71e2eb63c6e8862ec979e9a5f068b (patch) | |
tree | 38fec0463961cdf87bdd64510efee61f3dff9ebb /contrib/fast-import | |
parent | Merge branch 'mg/maint-difftool-vim-readonly' (diff) | |
parent | git-p4 submit: prevent 'Jobs' section from being removed from p4 change log (diff) | |
download | tgif-6d74e5c9dbe71e2eb63c6e8862ec979e9a5f068b.tar.xz |
Merge branch 'mh/p4'
* mh/p4:
git-p4 submit: prevent 'Jobs' section from being removed from p4 change log
Diffstat (limited to 'contrib/fast-import')
-rwxr-xr-x | contrib/fast-import/git-p4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/fast-import/git-p4 b/contrib/fast-import/git-p4 index a4f440d116..2df3bb21c4 100755 --- a/contrib/fast-import/git-p4 +++ b/contrib/fast-import/git-p4 @@ -570,7 +570,7 @@ class P4Submit(Command): continue if inDescriptionSection: - if line.startswith("Files:"): + if line.startswith("Files:") or line.startswith("Jobs:"): inDescriptionSection = False else: continue |