45 lines
516 B
Markdown
45 lines
516 B
Markdown
---
|
|
comments: false
|
|
---
|
|
|
|
# Git Add
|
|
|
|
----------
|
|
|
|
## Git Add
|
|
|
|
Adds content to the index or staging area.
|
|
|
|
- Adds a list of file:
|
|
|
|
```bash
|
|
git add <files>
|
|
```
|
|
|
|
- Adds all files including deleted ones:
|
|
|
|
```bash
|
|
git add -A
|
|
```
|
|
|
|
----------
|
|
|
|
## Git add continued
|
|
|
|
- Add all text files in current dir:
|
|
|
|
```bash
|
|
git add *.txt
|
|
```
|
|
|
|
- Add all text file in the project:
|
|
|
|
```bash
|
|
git add "*.txt*"
|
|
```
|
|
|
|
- Adds all files in directory:
|
|
|
|
```bash
|
|
git add views/layouts/
|
|
```
|