DEV Community

Cover image for Git Add Command Explained: A Step-by-Step Tutorial
Ione Souza Junior
Ione Souza Junior

Posted on • Originally published at ionixjunior.dev

Git Add Command Explained: A Step-by-Step Tutorial

To add files to a Git repository, they must be included in a specific area to commit. But why is this step necessary? If I make changes, don't I want to add them to the repository? Yes, indeed, but I'll show you some benefits of this approach and explain more details about the command. Let's get started!

Understanding the staging area

In a Git repository, the staging area is the crucial intermediary step between modifying your files and permanently saving those changes in a commit. Staging allows you to carefully curate which modifications you want to include in your next commit, providing granular control over your project's development and aiding in articulating your thought process more effectively through commits.

When you make changes to your project files, Git recognizes these modifications, but they are not automatically included in the next commit. This is where the concept of staging comes into play. The staging area is a temporary storage space where you selectively choose which changes should be part of the next commit.

By staging specific modifications intentionally, you can group related changes or commit them separately. This promotes a clean and organized version history, facilitating a clearer understanding of your project's or feature's progression over time.

Now you know about the staging area, let's talk about how to add your files to the stage.

Adding files to the staging area

As demonstrated in the last post, we can add files to the staging area using various methods. However, all these options stage the entire file to the staging area. Below, I'll delve deeper, helping you become proficient in this.

I'm utilizing this repository for the examples, implementing changes to demonstrate how the commands work.

Partial staging

When we use the git add command with the -p parameter, we can review all changes introduced and choose which ones to add to the stage.

Why is important to think about it? Technically, bundling all changes into one commit poses no issues. Yet, if you appreciate an organized commit history and want to articulate your thought process, invest time in structuring your changes. I favor this approach because progressing in small increments allows me to later revert specific commits without impacting the entire implementation. When we are developing software, it is common to change our thinking and have another idea based on what we are discovering, and this way, you can change your implementation in a structured and organized way.

Suppose I need to change a font name in a specific project file. As I do this, I find some comments inside the file that I decide to remove. Now, what should I write in the commit title? "Change font style and remove unnecessary comments"? Wrong. Combining all these changes in one commit can lead to confusion, as it may obscure the distinction between the primary and secondary changes. Let's explore how we can separate these into two distinct commits.

git add -p
Enter fullscreen mode Exit fullscreen mode

When you do this, Git will show each change separated in hunks:

diff --git a/BookTracking/AppDelegate.swift b/BookTracking/AppDelegate.swift
index 920883f..f174577 100644
--- a/BookTracking/AppDelegate.swift
+++ b/BookTracking/AppDelegate.swift
@@ -18,7 +18,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
     }

     private func configAppearance() {
-        let fontName = "Georgia-Bold"
+        let fontName = "Georgia"

         UILabel.appearance().font = UIFont(name: fontName, size: 12)

(1/2) Stage this hunk [y,n,q,a,d,j,J,g,/,e,?]? 
Enter fullscreen mode Exit fullscreen mode

Git is telling us that they found two hunks, and this is the first one - see this in the last line. I just changed the font name "Geordia-Bold" to "Geordia". This is the first commit that I want to make. But how can I do this? Note that in the last line exists a lot of options (y,n,q,a,d,j,J,g,/,e,?). Each of them is responsible for taking some action. I choose the last one to see the Git help with these commands. Just type ?:

(1/2) Stage this hunk [y,n,q,a,d,j,J,g,/,e,?]? ?
y - stage this hunk
n - do not stage this hunk
q - quit; do not stage this hunk or any of the remaining ones
a - stage this hunk and all later hunks in the file
d - do not stage this hunk or any of the later hunks in the file
j - leave this hunk undecided, see next undecided hunk
J - leave this hunk undecided, see next hunk
g - select a hunk to go to
/ - search for a hunk matching the given regex
e - manually edit the current hunk
? - print help
@@ -18,7 +18,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
     }

     private func configAppearance() {
-        let fontName = "Georgia-Bold"
+        let fontName = "Georgia"

         UILabel.appearance().font = UIFont(name: fontName, size: 12)

(1/2) Stage this hunk [y,n,q,a,d,j,J,g,/,e,?]?
Enter fullscreen mode Exit fullscreen mode

Now we can see what does every option:

  • y: Add this hunk to the stage. Similar to git add but only for this piece of code;
  • n: Discard this hunk to the stage. This piece of code won't be added, but you won't lose it;
  • q: Exit the changes selection;
  • a: Add this hunk to the stage and all later hunks in the file. This is a little bit dangerous if you don't know or remember what exists in the next hunks;
  • d: Discard this and another later hunks in this file;
  • j: Leave this hunk undecided if you have some doubt and go to the next undecided hunk;
  • J: Leave this hunk undecided if you have some doubt and go to the next hunk;
  • g: This is an interesting option: You can navigate between the hunks of this file. This can be good to you check some parts of the code before adding or discarding something;
  • /: Similar option to the function above, but you can specify some regex expression to find a particular hunk;
  • e: This is amazing because if your hunk changes a lot of lines, you can select what lines make sense to add;
  • ?: This was the option that I used to see the help.

There are many options. What do I need to do? In this case, I am focusing on the font name change. So I will accept this hunk just by typing y. Now, Git shows us the second hunk. This is the piece of code that I removed from the comments. I will leave this to another commit. I will discard it just by typing n.

(1/2) Stage this hunk [y,n,q,a,d,j,J,g,/,e,?]? y
@@ -34,15 +34,10 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
     // MARK: UISceneSession Lifecycle

     func application(_ application: UIApplication, configurationForConnecting connectingSceneSession: UISceneSession, options: UIScene.ConnectionOptions) -> UISceneConfiguration {
-        // Called when a new scene session is being created.
-        // Use this method to select a configuration to create the new scene with.
         return UISceneConfiguration(name: "Default Configuration", sessionRole: connectingSceneSession.role)
     }

     func application(_ application: UIApplication, didDiscardSceneSessions sceneSessions: Set<UISceneSession>) {
-        // Called when the user discards a scene session.
-        // If any sessions were discarded while the application was not running, this will be called shortly after application:didFinishLaunchingWithOptions.
-        // Use this method to release any resources that were specific to the discarded scenes, as they will not return.
     }


(2/2) Stage this hunk [y,n,q,a,d,K,g,/,s,e,?]? n
Enter fullscreen mode Exit fullscreen mode

Now we are done! Let's check the repository status to see what's happening.

git status

On branch main
Changes to be committed:
  (use "git restore --staged <file>..." to unstage)
    modified:   BookTracking/AppDelegate.swift

Changes not staged for commit:
  (use "git add <file>..." to update what will be committed)
  (use "git restore <file>..." to discard changes in working directory)
    modified:   BookTracking/AppDelegate.swift
Enter fullscreen mode Exit fullscreen mode

Note the AppDelegate.swift file is located in a staged area and a not staged area. This is possible because we select only one hunk of the changes and add it to the stage. So, if we do this commit, only the staged changes will be committed.

I know. I can hear you now telling me that this is easier to make using a Git GUI tool. Ok, you are right, but this is what the Git GUI tool will do under the hood. But if you prefer or have only the command line, you will know how to add files to the staging area. This was a small sample of how to use this option. There are more possibilities, and I encourage you to explore them.

Let's explore an alternative approach, leveraging a more robust command.

Staging using interactive mode

The interactive mode is more powerful because it provides a more granular control over staging. I have added a new file to the project, and now I show you the git status.

git status

On branch main
Changes not staged for commit:
  (use "git add <file>..." to update what will be committed)
  (use "git restore <file>..." to discard changes in working directory)
    modified:   BookTracking.xcodeproj/project.pbxproj
    modified:   BookTracking/AppDelegate.swift

Untracked files:
  (use "git add <file>..." to include in what will be committed)
    BookTracking/Components/IconViewComponent.swift

no changes added to commit (use "git add" and/or "git commit -a")
Enter fullscreen mode Exit fullscreen mode

Note the untracked file at the end of the Git message. If I run git add -p, this file will not be shown. But by using interactive mode, we will have the possibility to work with it. This occurs because git add -p only works by listening to the changes in the repository files, not new files not added. However, using the interactive mode is not a problem because it enables us to add this file to the repository.

git add -i

           staged     unstaged path
  1:    unchanged        +4/-0 BookTracking.xcodeproj/project.pbxproj
  2:    unchanged        +1/-6 BookTracking/AppDelegate.swift

*** Commands ***
  1: status   2: update   3: revert   4: add untracked
  5: patch    6: diff     7: quit     8: help
What now> 

Enter fullscreen mode Exit fullscreen mode

At the message's outset, "status" is visible. Below, you'll find available commands, each associated with a number. You can then execute the desired command by entering its number in the "What now" dialog at the bottom. Now, let's delve into the options:

  • 1: Show the file paths with changes;
  • 2: Add the changes into the staged area;
  • 3: Revert the changes to go back to the unstaged area;
  • 4: Add the untracked files to the stage. Note we can't see these files on status;
  • 5: Pick hunks and add them selectively. It is the same as the git add -p;
  • 6: Show the diff of the staged changes;
  • 7: Exit the interactive mode;
  • 8: Show the help menu.

The status (option 1) is what we are seeing now. Let's explore option 2 to add the changes to the staged area. In "What now" I typed 2.

What now> 2
           staged     unstaged path
  1:    unchanged        +4/-0 BookTracking.xcodeproj/project.pbxproj
  2:    unchanged        +1/-6 BookTracking/AppDelegate.swift
Update>> 
Enter fullscreen mode Exit fullscreen mode

Now Git shows two files that I changed and asks me which of them I want to do the action. Note the files are enumerated, and we need to use this to inform in the "Update" dialog. I will choose the AppDelegate.swift file, enumerated as the number 2.

Update>> 2   
           staged     unstaged path
  1:    unchanged        +4/-0 BookTracking.xcodeproj/project.pbxproj
* 2:    unchanged        +1/-6 BookTracking/AppDelegate.swift
Update>> 
Enter fullscreen mode Exit fullscreen mode

Git displays the same content and repeats the question, but notice the selected file has an asterisk. You can add more files, but for now, I'll just press "enter" to complete the process.

Update>> 
updated 1 path

*** Commands ***
  1: status   2: update   3: revert   4: add untracked
  5: patch    6: diff     7: quit     8: help
What now> 
Enter fullscreen mode Exit fullscreen mode

Git informed us that it updated one path and provided the commands once again. Checking the current status will reveal changes in the table.

What now> 1
           staged     unstaged path
  1:    unchanged        +4/-0 BookTracking.xcodeproj/project.pbxproj
  2:        +1/-6      nothing BookTracking/AppDelegate.swift

*** Commands ***
  1: status   2: update   3: revert   4: add untracked
  5: patch    6: diff     7: quit     8: help
What now> 
Enter fullscreen mode Exit fullscreen mode

Note that in the staged column, the AppDelegate.swift files contain the discrimination of the changes: one line added or changed and six removed. You can see what is in the stage using option 6 (diff).

What now> 6
           staged     unstaged path
  1:        +1/-6      nothing BookTracking/AppDelegate.swift
Review diff>>
Enter fullscreen mode Exit fullscreen mode

Again, Git will show us the staged files, and we need to pick one of them to see the diff. Let's choose file number 1 in the "Review diff" dialog.

Review diff>> 1
diff --git a/BookTracking/AppDelegate.swift b/BookTracking/AppDelegate.swift
index 920883f..f174577 100644
--- a/BookTracking/AppDelegate.swift
+++ b/BookTracking/AppDelegate.swift
@@ -18,7 +18,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
     }

     private func configAppearance() {
-        let fontName = "Georgia-Bold"
+        let fontName = "Georgia"

         UILabel.appearance().font = UIFont(name: fontName, size: 12)

@@ -34,15 +34,10 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
     // MARK: UISceneSession Lifecycle

     func application(_ application: UIApplication, configurationForConnecting connectingSceneSession: UISceneSession, options: UIScene.ConnectionOptions) -> UISceneConfiguration {
-        // Called when a new scene session is being created.
-        // Use this method to select a configuration to create the new scene with.
         return UISceneConfiguration(name: "Default Configuration", sessionRole: connectingSceneSession.role)
     }

     func application(_ application: UIApplication, didDiscardSceneSessions sceneSessions: Set<UISceneSession>) {
-        // Called when the user discards a scene session.
-        // If any sessions were discarded while the application was not running, this will be called shortly after application:didFinishLaunchingWithOptions.
-        // Use this method to release any resources that were specific to the discarded scenes, as they will not return.
     }



*** Commands ***
  1: status   2: update   3: revert   4: add untracked
  5: patch    6: diff     7: quit     8: help
What now> 
Enter fullscreen mode Exit fullscreen mode

The Git shows us all the changes that are in the stage. Let's explore another option. If you want to discard these changes to the stage, you can use the revert option enumerated by 3.

What now> 3
           staged     unstaged path
  1:        +1/-6      nothing BookTracking/AppDelegate.swift
Revert>> 
Enter fullscreen mode Exit fullscreen mode

Again, Git will ask us what files we want to revert. I will select file number 1 to proceed.

Revert>> 1
           staged     unstaged path
* 1:        +1/-6      nothing BookTracking/AppDelegate.swift
Revert>> 
Enter fullscreen mode Exit fullscreen mode

Check if the file you choose contains the asterisk, and If there is no other file to revert to, just press "enter".

Revert>> 
reverted 1 path

*** Commands ***
  1: status   2: update   3: revert   4: add untracked
  5: patch    6: diff     7: quit     8: help
What now> 
Enter fullscreen mode Exit fullscreen mode

The Git told us there is one path that was reverted. Let's check the status to see what is happening.

What now> 1
           staged     unstaged path
  1:    unchanged        +4/-0 BookTracking.xcodeproj/project.pbxproj
  2:    unchanged        +1/-6 BookTracking/AppDelegate.swift

*** Commands ***
  1: status   2: update   3: revert   4: add untracked
  5: patch    6: diff     7: quit     8: help
What now> 
Enter fullscreen mode Exit fullscreen mode

Now everything is back to the beginning!

I told you about untracked files, right? Let's explore option 4 to see it in action.

What now> 4
           staged     unstaged path
  1: BookTracking/Components/IconViewComponent.swift
Add untracked>> 
Enter fullscreen mode Exit fullscreen mode

The interactive mode displays the untracked files. I have only one new file in this project, but your project might have multiple files. Choose the files you want to add to the stage. In my case, it's file 1.

Add untracked>> 1   
           staged     unstaged path
* 1: BookTracking/Components/IconViewComponent.swift
Add untracked>> 
Enter fullscreen mode Exit fullscreen mode

Check if your files were selected correctly and press "enter".

Add untracked>> 
added 1 path

*** Commands ***
  1: status   2: update   3: revert   4: add untracked
  5: patch    6: diff     7: quit     8: help
What now> 
Enter fullscreen mode Exit fullscreen mode

The Git told us that one path was added. Let's check the status to see what is happening.

What now> 1
           staged     unstaged path
  1:    unchanged        +4/-0 BookTracking.xcodeproj/project.pbxproj
  2:    unchanged        +1/-6 BookTracking/AppDelegate.swift
  3:       +12/-0      nothing BookTracking/Components/IconViewComponent.swift

*** Commands ***
  1: status   2: update   3: revert   4: add untracked
  5: patch    6: diff     7: quit     8: help
What now> 
Enter fullscreen mode Exit fullscreen mode

Now we have the new file in the staged area. It works!

Let's explore one more option: The patch. This is option 5 and is the same as git add -p. Let's see:

What now> 5
           staged     unstaged path
  1:    unchanged        +4/-0 BookTracking.xcodeproj/project.pbxproj
  2:    unchanged        +1/-6 BookTracking/AppDelegate.swift
Patch update>> 
Enter fullscreen mode Exit fullscreen mode

First, select your files to patch. I will choose file 2.

Patch update>> 2
           staged     unstaged path
  1:    unchanged        +4/-0 BookTracking.xcodeproj/project.pbxproj
* 2:    unchanged        +1/-6 BookTracking/AppDelegate.swift
Patch update>> 
Enter fullscreen mode Exit fullscreen mode

Check if the file was selected and press "enter" to confirm.

Patch update>>     
diff --git a/BookTracking/AppDelegate.swift b/BookTracking/AppDelegate.swift
index 920883f..f174577 100644
--- a/BookTracking/AppDelegate.swift
+++ b/BookTracking/AppDelegate.swift
@@ -18,7 +18,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
     }

     private func configAppearance() {
-        let fontName = "Georgia-Bold"
+        let fontName = "Georgia"

         UILabel.appearance().font = UIFont(name: fontName, size: 12)

(1/2) Stage this hunk [y,n,q,a,d,j,J,g,/,e,?]? 
Enter fullscreen mode Exit fullscreen mode

Now, observe the same process as in the previous section of this post. Nothing differs. Accept or deny the hunks as needed. In the end, you'll be redirected to the interactive mode commands.

In these commands, with option 7 you can exit the interactive mode, and with option 8 you can see some basic instructions for each command. We are done right now. After this, you can exit the interactive mode, commit your changes, and be happy.

Using the interactive mode, we can revert some files of the stage. But we can do this without using it. Let's learn.

Unstaging changes

Just as I can add files to the stage, I can also remove them. If you type git status, you can see the Git tip telling how to do this. Let's check.

git status      

On branch main
Changes to be committed:
  (use "git restore --staged <file>..." to unstage)
    modified:   BookTracking/AppDelegate.swift
    new file:   BookTracking/Components/IconViewComponent.swift

Changes not staged for commit:
  (use "git add <file>..." to update what will be committed)
  (use "git restore <file>..." to discard changes in working directory)
    modified:   BookTracking.xcodeproj/project.pbxproj
    modified:   BookTracking/AppDelegate.swift
Enter fullscreen mode Exit fullscreen mode

See the Git tips above the file names. Let's unstage the changes in the AppDelegate.swift file.

git restore --staged BookTracking/AppDelegate.swift
Enter fullscreen mode Exit fullscreen mode

The Git doesn't show anything to us. Let's check the status to see what is happening.

git status                                         
On branch main
Changes to be committed:
  (use "git restore --staged <file>..." to unstage)
    new file:   BookTracking/Components/IconViewComponent.swift

Changes not staged for commit:
  (use "git add <file>..." to update what will be committed)
  (use "git restore <file>..." to discard changes in working directory)
    modified:   BookTracking.xcodeproj/project.pbxproj
    modified:   BookTracking/AppDelegate.swift
Enter fullscreen mode Exit fullscreen mode

Now we can see the AppDelegate.swift file was going back to the unstaged files. Great! But what happens if we use the same command without the --staged parameter? Let's see.

git restore BookTracking/AppDelegate.swift
Enter fullscreen mode Exit fullscreen mode

And then the status:

git status                                
On branch main
Changes to be committed:
  (use "git restore --staged <file>..." to unstage)
    new file:   BookTracking/Components/IconViewComponent.swift

Changes not staged for commit:
  (use "git add <file>..." to update what will be committed)
  (use "git restore <file>..." to discard changes in working directory)
    modified:   BookTracking.xcodeproj/project.pbxproj
Enter fullscreen mode Exit fullscreen mode

Oh no! I lost my changes! Without the --staged parameter, Git will discard the changes in the not staged area, and it is impossible to recover anything. Be careful with these commands may you lose your hard work.

Staging files day-to-day

When diving into the world of Git, it's commonplace to add all changes to the staging area and make only one commit. However, as your experience grows, the significance of the staging step becomes increasingly apparent.

Strategic use of the git add command allows you to transition from the initial habit of staging everything to a more nuanced approach. Carefully curating what goes into each commit leads to a version history that tells a clear and logical story of your project's evolution. Small, focused commits become not just a practice but a strategy for maintaining an organized and comprehensible history.

Consider the collaborative nature of many development projects. By staging changes thoughtfully, you contribute to a more collaborative and streamlined development process. Each commit becomes a meaningful contribution, making it easier for team members to comprehend, review, and integrate changes seamlessly.

Breaking down your changes into smaller, well-defined commits facilitates more efficient debugging. If an issue arises, you can pinpoint the exact commit responsible, making it simpler to identify and rectify problems without sifting through a monolithic commit that encompasses multiple changes.

Striking the right balance between cohesive commits and granular changes is an art that evolves with experience. Each commit should encapsulate a logical unit of work, providing a snapshot of progress without overwhelming the commit history.

I've come to appreciate the beauty of making numerous small commits, each encapsulating a specific change. This practice not only aligns with best version control practices but also enhances the overall agility of your development process.

As you embark on your Git journey, let the staging area be your ally in crafting a version history that is not just a record of changes but a narrative of your project's growth and refinement. Embrace the power of thoughtful staging, and watch as it transforms your version control workflow into a seamless and efficient collaboration.

That's it! Do you use this command? Did you already know these possibilities or understand how this command can help you? Share your thoughts on this post in the comments.

See you soon!

Top comments (0)