Skip to content
Snippets Groups Projects
Commit 58862246 authored by Mark HOEBEKE's avatar Mark HOEBEKE
Browse files

Added section on git add.

parent 0e23533a
No related branches found
No related tags found
1 merge request!5Added contents to Git CLI Basics with exercices.
......@@ -12,6 +12,9 @@ The `git status` [command](https://git-scm.com/docs/git-status) displays informa
- If it is related to a remote branch, have any modifications been made on either side ?
- What has happend to the files and folders of the local repository ?
#### Important note
1. By default Git ignores files with a predefined list of suffixes, considering they are generated by some complation process, and should not be included in a Git repository. These files will not show up in the output of `git status`.
On a freshly cloned repository, the output of `git status` looks like:
![status_initial.png](./media/status_initial.png)
......@@ -20,7 +23,32 @@ The `git log` [command](https://git-scm.com/docs/git-log) details all the operat
On the freshly cloned example repository, the output of `git log` looks like:
![log_initial.png](./media/log_initial.png)
![log_initial.png](./media/log_initial.png)
## Making changes to a local repository
You can make any changes to a local repository (adding, removing, renaming files and folders, editing files). Git will take note of what has changed and you can always use `git status` to view the changes.
For example, after editing the contents of the `README.md` file, `git status` will display:
![status_after_changes.png](./media/status_after_changes.png)
Notice that Git mentions that the `README.md` and the `imaginary.md` files have been modified *but has not been staged for commit*. The same is true for the newly added `images/bigfoot.jpeg` file. This means that even if you try `git commit` right now, nothing will be commited.
### Notifying Git which changes have to be included in the next commit.
Git has to be explicitely made aware of what changes you want to include in the next commit. For files that have been modified or new files, this is done with the `git add` [command](https://git-scm.com/docs/git-add). When `git add` is followed by a file name, this file will be included in the next commit. When `git add` is followed by a folder or directory name, each file it contains will be included in the next commit.
After using Git add on the modified and new files of the repository, this is what the output of `git status` looks like.
![status_after_add.png](./media/status_after_add.png)
#### Important notes
1. Using `git add` on an empty directory has no effects : Git does not manage empty directories.
1. If you edit a file for which you already did `git add`, you will need to do the `git add` again.
......
gitcli-basics/media/status_after_add.png

75 KiB

gitcli-basics/media/status_after_changes.png

65.5 KiB

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment