mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2024-11-03 19:04:40 +01:00
8 lines
335 B
Text
8 lines
335 B
Text
|
There's another way to add an entry to the index directly:
|
||
|
|
||
|
git update-index --add --cacheinfo <mode>,<blobhash>,<name>
|
||
|
|
||
|
The first three numbers of the mode describe the type of the entry, "100" is a regular file.
|
||
|
|
||
|
The second three number describe the permissions. Only "644" (non-executable) and "755" (executable) are supported.
|