RepoZ v2.1 Release Notes

Release Date: 2017-12-20 // over 6 years ago
  • Boost your CLI with grr!

    This release focuses on grr. Now, you can open the operating system's default file browser in the main directory of a Git repository from anywhere in your CLI by using the new command open:
    grr open RepoZ or as always with RegEx: grr open Re.*.
    ๐Ÿ”” Notice the difference to grr cd RepoZ which makes the CLI itself change its working directory.

    ๐Ÿ‘ File support

    grr can now work with files of a repository if a file pattern is added. This works with list and open.
    0๏ธโƒฃ For files, open will use the operating system's default applications.

    The following statement opens Visual Studio solutions located in the repository's main directory:
    grr open RepoZ *.sln
    ๐Ÿ With this, you don't have to use the Visual Studio start page anymore or hunt through Windows Explorer windows to find the solution files. We all know that these Explorer windows will stay open and will make you freak out later the day.

    To list (or open) files in subfolders of the Git repository, the option --recursive (or short -r) can be added:
    grr list RepoZ *.txt --recursive

    Don't miss to check grr help,
    Happy CLI ing!