# Git Stash Basics

1) To Stash all the files including untracked files

```bash
git stash push -u -m "message"
```

2) To View all the stash

```bash
git stash list
```

3) To apply a stash

```bash
git stash apply stash@{0}
```
