|
|
Login/Become a Member! | 28 Comments
|
| | Comments are owned by the poster. We aren't responsible for their content. |
Re: An Interview with Tom Lord of Arch on Versioning Systems
(Score: 1, Informative)
by Anonymous on Sep 24, 2004 - 03:13 PM
|
Currently the default is to consider object files as unrecognized. Where unrecognized says "there is a file I don't understand, tell me what to do before I continue".
You can change them to junk which states "all .o files are junk, don't include them in the checkin, but don't worry about them either."
How to do this:
There is a file called {arch}/=tagging-method
In there is a line:
unrecognized ^(.*\.(o|a|so|core|so(\.[[:digit:]]+)*)|core)$
Change it to:
unrecognized ^(.*\.(so|core|so(\.[[:digit:]]+)*)|core)$
And add a line:
junk ^(.*\.(o|a))$
That says treat all .o,.a files as junk, rather than treating them as unrecognized.
|
|