3 Dec
2007
3 Dec
'07
2:05 p.m.
2007/12/3, Allan McRae <mcrae_allan@hotmail.com>:
Hi all,
[cut]
Finally, now pacman has been moved to git I really have no idea how to create a diff! Can anybody suggest a good git cheatsheet?
You can use git diff. Simply: git clone [address] pacman - Do your modifications - git diff > patch_to_send. There will be problems if remote repo is modified while you do your modifications; in other words, the patch that you make isn't synced with the remote repo. Bye