# Add, Push, Pull, Clone

#### Git add

```
git add .
```

Add all changes to the index before using `commit`

#### Git pull

```
git pull
```

Pull down all updates from the working branch on Dev

#### Git commit

```
git commit
```

Commit all your local changes to the working branch, leaving out any message or description automatically opens VS Code to allow for a message and description to be added.

#### Git clone

```
git clone https://your.repo.address NewFolderName
```
