Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If I have a file or directory that is a symbolic link and I commit it to a git repo what happens to it?

I would assume that it leaves it as a symbolic link until the file is deleted and then if you pull the file back from an old version it just creates a normal file.

What does it do when I delete the file it references? Does it just commit the dangling link?

share|improve this question

4 Answers

up vote 283 down vote accepted

git just stores the contents of the link (i.e. the path of the file system object that it links to) in a 'blob' just like it would for a normal file. It then stores the name, mode and type (including the fact that it is a symlink) in the tree object that represents its containing directory.

When you checkout a tree containing the link, it restores the object as a symlink regardless of whether the target file system object exists or not.

If you delete the file that the symlink references it doesn't affect the git-controlled symlink in any way. You will have a dangling reference. It is up to the user to either remove or change the link to point to something valid if needed.

share|improve this answer
67  
BTW. If you are on filesystem like FAT that does not support symbolic links, and your repository uses them, you can set core.symlinks configuration variable to false, and symlinks would be checked out as small plain text files that contain the link text. – Jakub NarÄ™bski Jun 5 '09 at 9:42

Symlinked directories:

It's important to note what happens when there is a directory which is a soft link. Any git pull with an update removes the link and makes it a normal directory. This is what I learnt hard way. Some insights here and here.

Example

Before

 ls -l
 lrwxrwxrwx 1 admin adm   29 Sep 30 15:28 src/somedir -> /mnt/somedir

git add/commit/push

It remains the same

After git pull AND some updates found

 drwxrwsr-x 2 admin adm 4096 Oct  2 05:54 src/somedir
share|improve this answer
Your second link, the link to nabble discussion, is 404 Not Found – toolbear Mar 26 '11 at 21:58
I'm trying to solve this problem that I've been getting as well. Seems like a bug with git-pull translating the result for some reason. – Kevin Apr 4 '11 at 21:10
5  
Is this behavior present on all versions of git or has this been fixed with? – jbotnik Jun 9 '11 at 20:28
both links are now 404 btw – mattedgod Mar 22 '12 at 23:35
1  
@mattedgod: fixed – CharlesB Jul 27 '12 at 15:54

if you want to include the files within a symlinked directory, consider the "mount --bind" trick: http://stackoverflow.com/questions/86402/how-can-i-get-git-to-follow-symlinks/2079380#2079380

share|improve this answer

More on symlinked directories:

It's worth noting that Pythonic's warnings about symlinked directories do not apply to versioned symlinks. The major edge case in question was that of folks symlinking some or all of the working tree into a different path (say onto a different partition with more disk space) and expecting git to check out code through the existing symlink.

That is, if you have a project that contains versioned symlinks to files or directories, the normal symlink-as-blob behavior will preserve symlinks, correctly version changes to those symlinks, and otherwise work as expected.

The above behavior tested with git 1.6.5.6; but I strongly suspect that versioned behavior has been correct in git for quite some time.

share|improve this answer
12  
Shouldn't this just be a comment on Pythonic's response? – Paul Hargreaves Jan 13 '10 at 11:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.