mirror of
https://github.com/jackyzha0/quartz.git
synced 2026-03-24 15:05:42 -05:00
438 B
438 B
| title | tags | |||
|---|---|---|---|---|
| git and github |
|
how to add commits
- To add all changes to the staging area in Git, you can use the command
git add ..- The
.indicates that you want to add all changes, including new and modified files, to the staging area. Alternatively, you can use the commandgit add -Aorgit add --allto achieve the same result.
- The
- git commit -m "message here"