Git currently keep symlinks always as symlink, I would like to see some optional functionality when handling symlinks. Sometimes it is not intended to store information external to a source tree in git. Problems are that it might break a checkout, just loosing information or even have security implications. What are are the diffrent kinds of symlinks: - they can point to a file local to the tree - or point to a file outside of the tree - they can be absolute - or relative how can we handle symlinks: - 'keep' what git currently does, store the symlink as it is - 'file' store it as file (dereference it), information that it was a symlink gets lost, checkouts will produce a file. - 'relative' store it as a relative symlink - 'absolute' store it as a absolute symlink - 'error' refuse to checkin and abort commit - 'warn' display a warning How to add this to git? make config options (defaults in [core] ?) symlink[.{local|extern}?_?{absolute|relative}?] = action per branch overrides in [branch] Example: [core] # in-tree symlinks shall not break a checkout to another place symlink.local = relative # we don't want out-of-tree symlinks, store them as file symlink.extern_absolute = file # a relative symlink out-of-tree is likely a typo/error? symlink.extern_relative = error [branch] # some local feature branch keeps all symlinks myfeature.symlink = keep Default will be 'keep' so without this options it is what git currently does. Additional thoughts: An existing symlink in the tree is not altered by check in, only the repository is affected. New checkouts or switching branches may alter it. Merging between branches where one stores something as file and the other symlink should be straightforward, does this need to be resolved? So far thats just an idea how I would like it. If People like it this way or we can refine it even better, I am going to implement it sometime next. Christian - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html