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
1 parent
1977ffb
commit 097ba13
Showing
2 changed files
with
8 additions
and
8 deletions.
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,9 +1,9 @@ | ||
## S2. Хранятся состояния директории, постепенная сборка коммита | ||
#### Хранятся файлы, разница вычисляется на лету | ||
#### 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>` — удалить файл из индекса, чтобы перестать хранить его историю в репозитории | ||
- `git add .` — добавить все измененные файлы в индекс | ||
- `git commit -m <msg>` — записать изменения из индекса в репозиторий | ||
- `git status -sb` — вывести состояние директории и индекса кратко с указанием текущей ветки | ||
- `git restore .` или `git checkout .` — отменить изменения в директории по индексу | ||
- `git restore -S .` или `git reset .` — отменить изменения индекса по коммиту (отмена `git add .`) | ||
- `git rm <filename>` — удалить файл из индекса, чтобы перестать хранить его историю в репозитории |
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,4 +1,4 @@ | ||
## S1. Все локально | ||
#### Все данные хранятся в локальных репозиториях, изменения между ними можно синхронизировать | ||
1. `git init` — создать пустой репозиторий | ||
2. `git clone <url>` — склонировать репозиторий в новую директорию | ||
- `git init` — создать пустой репозиторий | ||
- `git clone <url>` — склонировать репозиторий в новую директорию |