Страницы

Поиск по вопросам

среда, 10 июля 2019 г.

Как в iTerm при клике на строку скопировать ее в поле ввода

Подскажите какие клавиши зажать, а то тяжело все нужные мне файлы в гит добавлять ручками.


Ответ

Добавляйте файлы по отдельным каталогам:
Было:
$ git status # On branch master # Changes not staged for commit: # (use "git add ..." to update what will be committed) # (use "git checkout -- ..." to discard changes in working directory) # # modified: calc/index.php # modified: include/configs/keys.php # no changes added to commit (use "git add" and/or "git commit -a")
Выполнили команду:
$ git add calc/
Стало:
$ git status # On branch master # Changes to be committed: # (use "git reset HEAD ..." to unstage) # # modified: calc/index.php # # Changes not staged for commit: # (use "git add ..." to update what will be committed) # (use "git checkout -- ..." to discard changes in working directory) # # modified: include/configs/keys.php # $
Можете также использовать знак * чтобы указать часть имени файла и так далее.
Ещё можно занести все файлы скопом, а потом исключить (unstage) ненужные, если вы видите, что исключать меньше файлов, чем добавлять.
Было:
$ git status # On branch master # Changes to be committed: # (use "git reset HEAD ..." to unstage) # # modified: calc/index.php # modified: include/configs/keys.php #
Выполнили команду:
$ git reset calc/ Unstaged changes after reset: M calc/index.php
Стало:
$ git status # On branch master # Changes to be committed: # (use "git reset HEAD ..." to unstage) # # modified: include/configs/keys.php # # Changes not staged for commit: # (use "git add ..." to update what will be committed) # (use "git checkout -- ..." to discard changes in working directory) # # modified: calc/index.php # $

Комментариев нет:

Отправить комментарий