Tmux update

main
Gasper Spagnolo 2022-11-11 15:00:46 +01:00
parent 152d824dd0
commit cb361ea516
2 changed files with 14 additions and 0 deletions

11
GIT.md
View File

@ -22,3 +22,14 @@ modified: '2021-12-14T21:13:05.655Z'
git reset -- path/to/folder git reset -- path/to/folder
git checkout -- path/to/folder git checkout -- path/to/folder
``` ```
### List all branches
* local: `git branch`
* remote: `git branch -r`
* remote & local: `git branch -a`
You can also add `-v` flag to increase verbosity to get more details about listed branches.
### Switch to remote branch that is not on local computer
`git switch <branch_name>`

View File

@ -24,3 +24,6 @@ modified: '2021-12-05T22:46:14.308Z'
- `ctrl+b space` - toggle pane layouts - `ctrl+b space` - toggle pane layouts
- `ctrl+b !` - convert pane into a window - `ctrl+b !` - convert pane into a window
- `ctrl+b x` - kill current pane - `ctrl+b x` - kill current pane
## Rename pane :)
`ctrl+b ,`