File: git-make-p4-refs

package info (click to toggle)
perl 5.40.1-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 126,152 kB
  • sloc: ansic: 668,539; perl: 525,522; sh: 72,038; pascal: 6,925; xml: 2,428; yacc: 1,410; makefile: 1,191; cpp: 208; lisp: 1
file content (13 lines) | stat: -rw-r--r-- 405 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

# this script creates a tag for every p4raw-id
# the output can be appended to .git/packed-refs, but make sure to back up
# first

# then you can do:

# git show perl@1234 where 1234 is a perforce change, and 'perl' is the p4
# depot

git log -z -F --grep='p4raw-id:' --pretty='format:%H %b' | \
perl -0ne 'chomp; if ( @t = m{([a-f0-9]{40}).*?p4raw-id: //depot/(.*?\@\d+)}s ) { print "@t\n" }'