Hey everyone, I’m just getting started with Git and I’m trying to understand the basics. What’s the command to check the current status of my repository, like which files have been modified or are staged for a commit? Thanks in advance
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Heya!
To check the current status of your repository, you can use the command:
This command will show you which files have been modified, added, or deleted, and whether they’re staged for commit or not. It’s super useful to keep track of what’s happening in your repo. Hope this helps!