> For the complete documentation index, see [llms.txt](https://wiki.owain.codes/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wiki.owain.codes/git/command-line/add-push-pull-clone.md).

# 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
```
