I want to take all the changes I made in the staging to my working directory , what command should I use to do this operation ?
Answers
Answered by
1
git commit. A commit command is the same in Git as a "save".
The conventional saving options can be understood as a system of file operation that can be used to overwrite a new file or an existing file.
Moreover, a Git committing is a kind of operation that works on a group of directories and files.
All commands like the git commit, git status and git add can be used in a group to save a Git project's present state.
Similar questions