Welcome to the Power Users community on Codidact!
Power Users is a Q&A site for questions about the usage of computer software and hardware. We are still a small site and would like to grow, so please consider joining our community. We are looking forward to your questions and answers; they are the building blocks of a repository of knowledge we are building together.
Post History
One can use sort -u to eliminate the duplicate entries and create a unique list: git whatchanged --author=samcarter --no-commit-id --name-only | sort -u
Answer
#2: Post edited
One can use `sort -u` to eliminate the duplicate entries:- ```
- git whatchanged --author=samcarter --no-commit-id --name-only | sort -u
- ```
- One can use `sort -u` to eliminate the duplicate entries and create a unique list:
- ```
- git whatchanged --author=samcarter --no-commit-id --name-only | sort -u
- ```