Topic: Mercurial help
Thought this was worth a separate thread.
If you are looking for easy way for maintaining local patches on top of latest FA, you should simply use mercurial. Just clone sourceforge repository on your development box and maintain your local changes in separate branch e.g.:
hg clone https://frontaccounting.hg.sourceforge.net/hgroot/fontaccounting/frontaccounting hg branch local_branch
Then apply all your local patches, and save the changes:
hg commit -m "my local patches"
When new changes appears in repo and you want to update your local_branch:
hg pull hg checkout local_branch hg merge default
When no conflicts happen between your changes and chnages in repo you are done. Otherwise you have to resolve conflicts and commit the effect of merge to the local_branch (more details about how to resolve the conflicts you will find in google).
Janusz
This generated some questions. Suppose that the directory I clone Frontaccounting into is /repository4FA. Are all of the hg commands done in the that directory? Where would be the directory (same dir or different one?) that I would have the files I am working on? Do the directories need any particular permissions? I guess what I want to be sure about is how to construct the set of directories needed for Mercurial to work nicely for me and what files go into what directories.
If this whole thread is too off topic, just tell me.
Thanks,
ed10