Forrest logo
back to the git tool

git-locked:tldr:62385

git-locked: List all local locked files.
$ git locked
try on your machine

The command "git locked" does not exist as a built-in Git command. Git does not have a native command called "git locked". It is possible that "git locked" is a custom or alias command set up by a user or a specific Git configuration. To determine what "git locked" does, you can check any custom Git aliases or scripts defined in your local or global Git configurations. The alias might have been set up by you or by someone else in your team or organization. To view your local Git configuration, you can use the following command: git config --local -l This will display the local Git configuration, including any aliases. Similarly, you can check the global Git configuration with: ``` git config --global -l

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the git tool