What does "Changes not staged for commit" mean

543,084

Solution 1

when you change a file which is already in the repository, you have to git add it again if you want it to be staged.

This allows you to commit only a subset of the changes you made since the last commit. For example, let's say you have file a, file b and file c. You modify file a and file b but the changes are very different in nature and you don't want all of them to be in one single commit. You issue

git add a
git commit a -m "bugfix, in a"
git add b
git commit b -m "new feature, in b"

As a side note, if you want to commit everything you can just type

git commit -a

Hope it helps.

Solution 2

You have to use git add to stage them, or they won't commit. Take it that it informs git which are the changes you want to commit.

git add -u :/ adds all modified file changes to the stage git add * :/ adds modified and any new files (that's not gitignore'ed) to the stage

Solution 3

It's another way of Git telling you:

Hey, I see you made some changes to your files, but keep in mind that when you write pages to my history, those changes won't be in these pages.

Changes to files are not staged if you do not explicitly git add them (and this makes sense).

So when you git commit, those changes won't be added since they are not staged. If you want to commit them, you have to stage them first (ie. git add).

Solution 4

Try following int git bash

1.git add -u :/

2.git commit -m "your commit message"

  1. git push -u origin master

Note:if you have not initialized your repo.

First of all

git init 

and follow above mentioned steps in order. This worked for me

Solution 5

Suposed you saved a new file changes. (navbar.component.html for example)

Run:

ng status
modified:   src/app/components/shared/navbar/navbar.component.html

If you want to upload those changes for that file you must run:

git add src/app/components/shared/navbar/navbar.component.html

And then:

git commit src/app/components/shared/navbar/navbar.component.html -m "new navbar changes and fixes"

And then:

git push origin [your branch name, usually "master"]

---------------------------------------------------------------

Or if you want to upload all your changes (several/all files):

git commit -a

And them this will appear "Please enter the commit message for your changes."

  • You'll see this message if you git commit without a message (-m)
  • You can get out of it with two steps:
  • 1.a. Type a multi-line message to move foward with the commit.
  • 1.b. Leave blank to abort the commit.
    1. Hit "esc" then type ":wq" and hit enter to save your choice. Viola!

And then:

git push

And Viola!

Share:
543,084

Related videos on Youtube

newBike
Author by

newBike

Updated on March 08, 2022

Comments

  • newBike
    newBike about 2 years

    I thought if you want to track the files you should git add [files you want to track]

    I don't know why I got the messages Changes not staged for commit.

    If those files were not staged, shouldn't git shows me those files were Untracked like that

    enter image description here

    All I've done was create a new feature from develop branch and worked in feature/change_excel_format branch

    I thought Those files should be in staged status,

    But git status told me Changes not staged for commit

    enter image description here

    To brief, I only know there are 3 stages in git untracked, staged, committed Can any one tell me , what was the stage in for Changes not staged for commit enter image description here

    So if I modified the file a (already in the repo)

    and type git st , the git will tell me Changes not staged for commit

    if I git a then the file a will be in staged status

    if I modified the file a now, there will be two status of file a in git, right ?

    So I have to decide if make the staged a be commit or make the not stage a to be staged, and then the previous staged file awill be discard ?

    enter image description here

    • Sadee
      Sadee over 5 years
      if get this message, and do you want this file (a) needs to commit, make sure you are in the correct directory path (project root path for add all) while you git add
  • newBike
    newBike over 10 years
    So, If those files are alreday in repo. and I have changed them, I also can git commit THEM directly without add them , right ?
  • Stefano Falasca
    Stefano Falasca over 10 years
    of course. And in that case only the listed files would be committed, regardless of the presence of staged changes in different files.
  • eemrah
    eemrah about 6 years
    I've got same issue but my problem was also about submodule cause of untracked files. So in my sub directory I also add all changes with git and the problem has gone.
  • mfaani
    mfaani over 5 years
    I've already done git clean -fd and I'm still getting this. I want to get rid of all the changes. What else should I be doing?
  • viniciussvl
    viniciussvl over 5 years
    git stash removed all my changes, there it was 10 hours of work :(
  • Cyrus Zei
    Cyrus Zei over 5 years
    if you used "git stash" it put those changes to a "temp place" to get them back just type "git stash pop" to get your change from the "temp place"
  • Joshua K
    Joshua K over 5 years
    your answer needs background information or insight into why or how it worked for you.
  • Martin
    Martin about 5 years
    git commit -a doesn't commit everything, only the updated files, not the new ones...
  • Martin
    Martin about 5 years
    Same I said above: git commit -a doesn't upload al the changes, it doesn't include the new files. It will only commit the updates to existent files.
  • shabby
    shabby almost 5 years
    DO NOT USE git stash until you read @viniciussvl and Cyrus comment
  • Eoin
    Eoin over 4 years
    But I didn't change the file it's referencing
  • Hashim Aziz
    Hashim Aziz over 4 years
    I don't understand how exactly this behaviour makes sense. If I've already told Git to track a file by doing add . when I set up the repostiry, and it can detect I've made changes to it, why do I need to explicitly add files every time I commit? Just to make a change to a file, I have to add, commit and push. The demarcation between commit and push makes sense to me, the demarcation between add and commit seems ridiculously redundant.
  • mccurcio
    mccurcio over 4 years
    This answer is clear and concise compared to the one above, that is why I love it. ;)
  • Francisco Maria Calisto
    Francisco Maria Calisto about 4 years
    As is, the answer does not support the question. Please consider to change or add further information.
  • Siwoku Adeola
    Siwoku Adeola about 4 years
    This issue worked for me, on a git conflict where I was unable to delete a file from my local repository and commit from the local repository to the remote master branch.
  • Ayoub Laazazi
    Ayoub Laazazi about 4 years
    is git add . enough to stage everything at once?
  • Tobias Kaufmann
    Tobias Kaufmann almost 4 years
    Why would I even use git stash in this case?
  • Z. Cochrane
    Z. Cochrane almost 4 years
    Did the default behavior change in a recent git version? I could swear I used to be able to just do "edit file" + "git commit" without running "git add" every time.
  • Stefano Falasca
    Stefano Falasca almost 4 years
    @Z.Cochrane I have never seen the behaviour you describe and I've been using git for 10 years. You are probably thinking of "git commit -a", which commits all unstaged changes.
  • Herman Toothrot
    Herman Toothrot almost 4 years
    @Hashim I agree, I really don't understand the logic.
  • Jean-François Fabre
    Jean-François Fabre over 3 years
    this is also super dangerous if you don't know what you're doing
  • mnemotronic
    mnemotronic over 3 years
    @Prometheus; caveat: I'm still a total newbie when it comes to git, so this may be way wrong. "Committing" in git is a 2-step process: 1. Tell git what will be included in the "commit" (the default is NOT all changed files) using "git add", and, 2. Do the "commit". When committing, git ignores files that aren't explicitly "added"; even if that file is in the local repository and has been changed. Not "adding" a file is a way to tell the "commit" that you don't want to send it to the local repository at this time.
  • KenobiBastila
    KenobiBastila over 3 years
    How does a post like this gets upvotes? There should be a warning about git stash.
  • Chuck Le Butt
    Chuck Le Butt over 3 years
    @Prometheus It's because Git basically has three "spaces". 1. The working area, which is viewed as temporary and prone to deletion. 2. The staging area, which is where files are placed before being placed in the repo. 3. The repo itself. This allows you to do things like move to a different commit in your history before committing the files in your staging area to the repo (and probably lots of other things I don't fully understand). If you can find the tutorials by Paola Perrotta, I'd strongly recommend them