2018-03-17 18:26:18 +05:30
|
|
|
---
|
|
|
|
comments: false
|
|
|
|
---
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
# 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/
|
|
|
|
```
|