JavaScript
- 367 ответов
- 0 вопросов
385
Вклад в тег
git
придерживается этого соглашения.-n
, а вы хотите вывести все файлы в папке командой cat
$ ls -l
total 8
-rw-rw-r-- 1 lynn lynn 6 Apr 19 12:34 file1
-rw-rw-r-- 1 lynn lynn 6 Apr 19 12:33 -n
cat *
, то получится странное: $ cat *
1 file1
can file1 -n
, т.е. вывести файл file1
с нумерацией строк.$ cat -- *
file1
a
b
c
cat -- file1 -n
, но по соглашению, после --
не может быть ключей команды, только имена файлов.git
есть ещё более строгое соглашение, по которому параметры после --
могут быть только путями.test
и ветка test
, то будет так:$ git branch
* master
test
$ git status
On branch master
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: test
no changes added to commit (use "git add" and/or "git commit -a")
$ git reset test
fatal: ambiguous argument 'test': both revision and filename
Use '--' to separate paths from revisions, like this:
'git <command> [<revision>...] -- [<file>...]'
$ git reset -- test
Unstaged changes after reset:
M test