gitlab-org--gitlab-foss/doc/university/training/topics/git_add.md

38 lines
433 B
Markdown
Raw Normal View History

2017-11-01 11:56:40 -04:00
---
comments: false
---
2016-10-20 06:38:32 -04:00
# Git Add
Adds content to the index or staging area.
- Adds a list of file:
```shell
git add <files>
```
- Adds all files including deleted ones:
```shell
git add -A
```
2016-10-20 06:38:32 -04:00
- Add all text files in current dir:
```shell
git add *.txt
```
- Add all text file in the project:
```shell
git add "*.txt*"
```
- Adds all files in directory:
```shell
git add views/layouts/
```