added more info

This commit is contained in:
Bastian 2020-01-08 13:52:55 +00:00
parent 8dc1bff09f
commit 80006b39c5
1 changed files with 11 additions and 0 deletions

View File

@ -27,3 +27,14 @@ unstage by using
```shell
use "git reset HEAD <file>..." to unstage
```
Track remote branch
```shell
git checkout --track origin/<branch>
```
Delete remote branch
```shell
git push <remote_name> --delete <branch_name>
git remote prune <remote_name>
```