Skip to content

Rodrigo Gonçalves

IT Analyst and Consultant

  • Contact
  • Academic Curriculum
  • Research
  • Personal Projects
  • LinkedIn
  • E-mail
  • Containers (1)
  • Operating Systems (4)
  • Programming (3)
  • Research (6)

GIT list status on all directories

To list status on all git repositories in a folder:

 

 

find . -maxdepth 1 -mindepth 1 -type d -exec sh -c '(echo {} && cd {} && git status -s && echo)' \;

 

(from https://coderwall.com/p/grmruq/git-status-on-all-repos-in-folder)

Posted on November 18, 2018December 30, 2023Author adminCategories GIT, Programming

Post navigation

Previous Previous post: Algoritmos de Pré-Processamento para Uniformizaçãode Instâncias XML Heterogêneas
Next Next post: How to make an older commit the latest