Basic Workflow
Status
Command will display the untracked files from the repository. These files can be added to our repository.
Add File
The git add command is used to add file contents to the Index (Staging Area).
Commit
It is used to record the changes in the repository. It is the next command after the git add.
Remove File
git rm is used to remove a file from a Git repository.
Last updated