How can I view the list of files submitted in git?
You can use the following command to view the list of submitted files:
- View the list of files from the latest submission:
- Display the commit history and list only the filenames for the changes made in the most recent commit.
- View the list of files for a specific submission.
- Show the commit history and list only the filenames that were changed in the specified commit.
- The
is the hash value of the commit, which can be obtained using the git log command. - View the list of the latest files submitted in a specific branch.
- Show the last commit on the specified branch with the file names.
- The
represents the name of the branch.