Files
30-seconds-of-code/snippets/stage-files.md
Isabelle Viktoria Maciohsek 81b0c17a6a Add stage files
2021-04-06 16:39:37 +03:00

460 B

title, tags
title tags
Add files to the staging area commit,beginner

Adds files to the staging area.

  • Use git add <pathspec> to add files to the staging area.
  • <patcspec> can be a filename or a fileglob.
git add <pathspec>
git add "30seconds.txt"
# Add the file `30seconds.txt` to the staging area

git add src/*.json
# Add all files with a `.json` extension in the `src` directory

git add .
# Adds all changes to the staging area