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
Nov 6, 2022
1 parent
74bf6d5
commit 7543129
Showing
1 changed file
with
9 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,9 @@ | ||
## R2. Удаленное изменение — это push | ||
- `git push <remote> <local_branch>:<remote_branch>` — добавить изменения из локальной ветки `<local_branch>` и переместить ветку `<remote_branch>` удаленного репозитория | ||
- `git push` = `git push origin HEAD` — добавить изменения из текущей локальной ветки и переместить соответствующую ветку удаленного репозитория | ||
- `git push -f` — выполнить `push`, даже если удаленная ветка уже не является предком | ||
- `git push --force-with-lease` — выполнить `push`, если является предком или удаленная ветка не сдвигалась (использовать вместо предыдущей команды) | ||
- `git push <remote> -d <branch|tag>` — удалить ветку или тег в удаленном репозитории | ||
- `git push <remote> tag <tag>` — отправить тег в удаленный репозиторий | ||
- `git push <remote> --tags` — отправить все локальные теги в удаленный репозиторий | ||
- `git push --mirror` — выполнить агрессивный `push` для всех тегов, веток и HEAD, подходит для создания удаленной копии локального репозитория |