### List Repository Files with ls -R Source: https://context7.com/context7/automation_trendmicro_api-reference_v3_0/llms.txt Command to list all files and directories recursively within the specified repository path. Useful for understanding the project's file structure. ```bash # List all documentation files ls -R /app/repos/websites/automation_trendmicro_api-reference_v3_0 # Output: # README.md # xdr/ # home.md ``` -------------------------------- ### View Git Remote Repository Configuration Source: https://context7.com/context7/automation_trendmicro_api-reference_v3_0/llms.txt Command to display the remote repository URL(s) configured for the Git repository, showing fetch and push locations. ```bash # View remote repository git remote -v # Output: origin https://github.com/context7/automation_trendmicro_api-reference_v3_0 (fetch/push) ``` -------------------------------- ### View Git Commit History Source: https://context7.com/context7/automation_trendmicro_api-reference_v3_0/llms.txt Command to display a concise log of the Git commit history, showing each commit with its hash and summary. ```bash # View commit history git log --oneline # Output: 63a1c20 docs: upload 1 documentation files ``` -------------------------------- ### View Git Repository Status Source: https://context7.com/context7/automation_trendmicro_api-reference_v3_0/llms.txt Command to check the current state of the Git repository, indicating whether there are any uncommitted changes. ```bash # Check repository status git status # Output: On branch main, nothing to commit, working tree clean ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.