Top "Git-status" questions

Shows which files in a Git repository have been modified and/or staged and what state they are in since the last commit

"fatal: Not a git repository (or any of the parent directories)" from git status

This command works to get the files and compile them: git clone a-valid-git-url for example: git clone git://cfdem.git.…

git repository clone git-clone git-status
Git: list only "untracked" files (also, custom commands)

Is there a way to use a command like git ls-files to show only untracked files? The reason I'm asking …

git git-status git-rm git-stage git-ls-files
How to resolve git status "Unmerged paths:"?

I merged branch dog into animal. When I go to commit, I get the following: Unmerged paths: (use "git reset …

git merge git-merge git-status
Git list of staged files

I staged a lot of files using git add, now I want to see all the files I have staged, …

git git-diff git-status git-stage
git status shows modifications, git checkout -- <file> doesn't remove them

I would like to remove all changes to my working copy. Running git status shows files modified. Nothing I do …

git revert git-status working-copy
error: The following untracked working tree files would be overwritten by checkout

When I do git status it says nothing to commit, working directory clean And then I do git pull --rebase, …

git git-pull git-status
How to check if there's nothing to be committed in the current branch?

The goal is to get an unambiguous status that can be evaluated in a shell command. I tried git status …

git git-status
How can I tell which remote "parent" branch my branch is based on?

I have a scenario in which there a several remote tracking branches within my local repository that I must sync …

git git-remote git-status
How to colorize git-status output?

I want to colorize git-status output so that: untracked files = magenta new files = green modified files = blue deleted files = red …

git git-config git-status
How not to display the .class in git

I don't want to display .class files when executing git status. I created a file named .gitignore and entered the .…

git gitignore git-status