summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 7073e69)
raw | patch | inline | side by side (parent: 7073e69)
author | Junio C Hamano <junkio@cox.net> | |
Tue, 6 Feb 2007 20:46:11 +0000 (12:46 -0800) | ||
committer | Shawn O. Pearce <spearce@spearce.org> | |
Tue, 6 Feb 2007 21:08:30 +0000 (16:08 -0500) |
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Documentation/git-fast-import.txt | patch | blob | history | |
fast-import.c | patch | blob | history |
index 2be6c4b8070feaf6482e65f6517c1b801c16760d..1fe2c1dcf225d430dc8517c47cc5d48073cd96b3 100644 (file)
of files in most projects use this mode. If in doubt, this is
what you want.
* `100755` or `755`: A normal, but executable, file.
-* `140000`: A symlink, the content of the file will be the link target.
+* `120000`: A symlink, the content of the file will be the link target.
In both formats `<path>` is the complete path of the file to be added
(if not already existing) or modified (if already existing).
diff --git a/fast-import.c b/fast-import.c
index df84e4d87d3d7c151bd0cdda29b22519e7043c8a..c72c5c7a9453a90e009b542a314c22465ed85f83 100644 (file)
--- a/fast-import.c
+++ b/fast-import.c
path_str ::= path | '"' quoted(path) '"' ;
mode ::= '100644' | '644'
| '100755' | '755'
- | '140000'
+ | '120000'
;
declen ::= # unsigned 32 bit value, ascii base10 notation;