What does the double-dash [--] option do on git reset?

前端 未结 2 1591
故里飘歌
故里飘歌 2021-02-07 16:28

I\'ve seen commands like:

git reset e542 -- readme.txt

I understand this command puts in the index the contents of the file readme.txt from com

相关标签:
2条回答
  • 2021-02-07 16:30

    -- separates branch names from file names, in case there is any ambiguity (if you have a branch and a file with the same name). If there are no ambiguities, you don't need the --.

    Also as mentioned by Jonas Wielicki, this allows for file names that start with a -; these would otherwise be interpreted as command-line options.

    0 讨论(0)
  • 2021-02-07 16:30

    I believe it just separates the commit (which is an optional parameter) from the list of paths. If you didn't have the separator there'd be no sure fire way to distinguish if the first parameter was a path or a commit.

    0 讨论(0)
提交回复
热议问题