Eclipse - Is it possible to commit linked files?
Is it possible to commi开发者_StackOverflowt outside files that have been linked to a project?
Not typically, as far as I know.
Eclipse's integration with source control systems generally follows the idea that only project files are committed into the corresponding repository, and the file system boundaries are observed. Thus, stuff not under your project directory (and marked as external) will not be committed, especially if marked explicitly as external.
Your alternatives include creating soft links to the external files (I would avoid that), or creating a separate eclipse project (With its own repository location) for the external files, and then adding project dependencies.
精彩评论