forked from kontur-courses/git-rules
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Arseniy_Yolkin
committed
Oct 13, 2022
1 parent
1483956
commit 933e59f
Showing
1 changed file
with
7 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
## S2. Хранятся состояния директории, постепенная сборка коммита | ||
#### Хранятся файлы, разница вычисляется на лету | ||
#### Commit index для сборки коммита | ||
#### Commit index для сборки коммита | ||
1. `git add .` — добавить все измененные файлы в индекс | ||
2. `git commit -m <msg>` — записать изменения из индекса в репозиторий | ||
3. `git status -sb` — вывести состояние директории и индекса кратко с указанием текущей ветки | ||
4. `git restore .` или `git checkout .` — отменить изменения в директории по индексу | ||
5. `git restore -S .` или `git reset .` — отменить изменения индекса по коммиту (отмена `git add .`) | ||
6. `git rm <filename>` — удалить файл из индекса, чтобы перестать хранить его историю в репозитории |