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
Showing
1 changed file
with
14 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
## S3. Манипуляции через ссылки, нет ссылки — в мусор | ||
#### HEAD — текущая ссылка, tag — фиксированная ссылка, branch — движущаяся за HEAD ссылка | ||
#### checkout — перемещение на ветку или коммит, reset — перемещение с веткой на коммит | ||
#### Видно то, на что есть ссылки, остальное — мусор | ||
- `git tag` — вывести список тегов | ||
- `git tag <tagname>` — создать тег | ||
- `git branch` — вывести список локальных веток | ||
- `git branch -av` — вывести список локальных и удаленных веток | ||
- `git branch <branchname>` — создать ветку | ||
- `git branch -d <branchname>` — удалить ветку | ||
- `git checkout <commit>` или `git switch --detach <commit|branch>` — переместить HEAD на коммит, причем получится detached HEAD | ||
- `git checkout <branch>`или `git switch <branch>` — переместить HEAD на ветку | ||
- `git checkout -b <new_branch>` или `git switch -c <new_branch>` — создать ветку и перейти на нее | ||
- `git reset --hard <commit>` — переместить HEAD и текущую ветку на `<commit>` |