아. git-p4를 내가 다시 쓸 일이 생기다니.. OTL
Perforce는 (거지같게도) patch 파일이나 diff 파일 만드는 기능이 빈약해서 git p4 clone 해서 patch 파일을 만들어 사용하면 편하다.
사실 별로 해줄 건 없고,
Git for Windows 깔고,
p4 깔고,
git-p4.py 만 https://raw.github.com/git/git/master/git-p4.py 에서 받아다가 “C:\Program Files (x86)\Git\bin\” 아래에 넣어주면 된다.
git-p4.py 치는 거보다 git p4 로 쓰고 싶으면 “%USERPROFILE%.gitconfig” 를 아래와 같이 고쳐서 alias해주면 된다.
[alias]
p4 = !’C:\\Program Files (x86)\\Git\\bin\\git-p4.py’
기본 config variable은 다음과 같다.
User specified as an option to all p4 commands, with -u
<user>. The environment variable P4USER can be used instead.
Password specified as an option to all p4 commands, with -P
<password>. The environment variable P4PASS can be used
instead.
Port specified as an option to all p4 commands, with -p
<port>. The environment variable P4PORT can be used instead.
Host specified as an option to all p4 commands, with -h
<host>. The environment variable P4HOST can be used instead.
Client specified as an option to all p4 commands, with -c
<client>, including the client spec.
참고: http://ericlathrop.com/2012/12/how-to-set-up-git-p4-in-windows/