Onefetch is a command-line Git information tool that displays detailed information about a Git repository in a clean and colorful format. It shows details such as the project name, programming languages, contributors, commit history, license, and repository statistics. You can install and use Onefetch in Termux to quickly view Git repository information using simple commands.
Here’s what you can do with Onefetch in Termux:
- Display Git repository information.
- View programming languages used.
- Show project contributors.
- Display repository statistics.
- Customize the output.
- Export repository information in JSON or YAML format.
Install Onefetch in Termux
Below are the simple commands to install Onefetch in Termux. Copy and run each command one by one to install the tool.
Update Termux packages.
pkg update && pkg upgrade -yInstall Onefetch.
pkg install onefetch -yCheck the installed version.
onefetch --versionOnefetch is now installed and ready to use.
Usage Commands
After installing Onefetch in Termux, you can use different commands to view and customize Git repository information. Below are some useful Onefetch commands that you can run in the Termux terminal.
Move to the Git repository that you want to analyze.
cd (git directory)Display information about the current Git repository.
onefetchShow the help menu.
onefetch --helpDisplay the installed version.
onefetch --versionDisplay information for another Git repository.
onefetch /path/to/repositoryHide selected information fields.
onefetch --disabled-fields license contributorsHide the repository title.
onefetch --no-titleShow email addresses of contributors.
onefetch --emailIgnore merge commits.
onefetch --no-mergesHide the ASCII logo.
onefetch --no-artDisplay supported programming languages.
onefetch --languagesDisplay supported package managers.
onefetch --package-managersExport repository information as JSON.
onefetch --output jsonExport repository information as YAML.
onefetch --output yamlUse a specific programming language ASCII logo.
onefetch --ascii-language rustChoose the command you want and Onefetch will automatically analyze the Git repository and display the requested information inside the Termux terminal.
End Note
Onefetch is a simple and useful Git information tool that displays important details about a repository in a clean and colorful format. It helps you quickly view project statistics, programming languages, contributors, and other useful information using simple commands.

