DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Please enter at least three characters to search
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Zones

Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks

Because the DevOps movement has redefined engineering responsibilities, SREs now have to become stewards of observability strategy.

Apache Cassandra combines the benefits of major NoSQL databases to support data management needs not covered by traditional RDBMS vendors.

The software you build is only as secure as the code that powers it. Learn how malicious code creeps into your software supply chain.

Generative AI has transformed nearly every industry. How can you leverage GenAI to improve your productivity and efficiency?

Related

  • Mastering Git
  • Developer Git Commit Hygiene
  • A Comprehensive Guide to GitHub
  • Understanding Git

Trending

  • Optimizing Serverless Computing with AWS Lambda Layers and CloudFormation
  • When Airflow Tasks Get Stuck in Queued: A Real-World Debugging Story
  • How to Introduce a New API Quickly Using Micronaut
  • Useful System Table Queries in Relational Databases
  1. DZone
  2. Testing, Deployment, and Maintenance
  3. Deployment
  4. Automate Git Commands Across Repos Using Batch Scripts and Windows Scheduler

Automate Git Commands Across Repos Using Batch Scripts and Windows Scheduler

If you work on multiple projects a day, you may spend a lot of time managing changes, commits, and more. Here's how you can save time and automate Git commands.

By 
Juan Sebastian Lengyel user avatar
Juan Sebastian Lengyel
·
Aug. 13, 19 · Tutorial
Likes (6)
Comment
Save
Tweet
Share
23.7K Views

Join the DZone community and get the full member experience.

Join For Free

For big and small projects alike, I always recommend using a source version control software and a repo for availability, sharing, and managing code.

The drawback, if you work with multiple projects during the day, be it at your work or your personal projects, is that you may spend a good portion of your time managing all the changes, adds, commits, fetchs, and pulls.

To avoid all this additional work, I decided to write some scripts that would help save some time, and still have a good version control implementation.

Writing Scripts to Apply Commands Across Repositories

I store all of my local repositories in a particular directory. I wrote these scripts to automate one or more git commands to run on each repository within that directory. It could also be used to do a general clean up before committing anything to your repository.

Here are two ways to do it.

Method 1:

Use this when you want to store commands in a single file to be executed in sequence for every repo in your directory.

@echo off

for /d %%i in (%cd%\*) do (
    echo *************************************************************************

    echo "%%i"
    cd "%%i"

    echo -----------------------------------------
    echo status
    git status
    echo -----------------------------------------

    echo *************************************************************************
)

cd ..


The script is simple: It’s composed of a single for loop. What you are doing is for each folder inside the current directory, change directory to your local repo and execute the command inside the loop. To execute the exact contents of this script, you would just need to place it in the directory where all your repositories are stored. The echo tags will help to separate the results shown in the Command Window.

You could add any commands you like inside the for loop so you can execute several of them throughout every repository in that directory. A benefit to this approach is that you can also use your git aliases in the very same way.

Method 2:

The first approach described above works well for commands you constantly use while managing your repositories, like git status or git fetch. But storing a different batch file for each git command you want to execute across your repos can also be cumbersome.

With this approach, you can apply a single command across all repositories without the need of storing a batch file for each Git command.

Here, you would need to add a variable that will store the command you want to execute and prompt the user to type it into the console:

@echo off

set /p git_command="Type your command: "

for /d %%i in (%cd%\*) do (
    echo *************************************************************************

    echo "%%i"
    cd "%%i"

    echo -----------------------------------------
    echo %git_command%
    git %git_command%
    echo -----------------------------------------

    echo *************************************************************************
)

cd ..


Automating the Scripts With Windows Scheduler

The benefit of storing batch files with some commands is that you can schedule their execution so that, by the end of the day, all commits done will be pushed to your remote repository, or that at the start of the day, all your local repositories have fetched all the remote changes.

Setting up this task is easy using the Windows Task Scheduler; open the Task Scheduler, click on Create Basic Task, and follow the wizard instructions. The Wizard will allow you to select the frequency of the execution and the time of the day when you want to execute your scripts.

Open the Windows Task Scheduler and click on Create Basic Task:

Automate git commands across repos

Set a descriptive Name and Description for the task you would like to schedule.

how to automate git commands across repos

Select the Trigger configuration that best suits your needs.

schedule frequency of git commands across repos

*Some of these options will display a sub-menu to further configure the trigger

Select the Start a program option in Action.

start scheduling git commands

In the following Window, give the full path to your batch script.

scheduling git commands across repositories

Finally, a window will show you a summary of the scheduled task.

execute git commands across repos

If everything is correct, click Finish. Everything should be set up and your commands will run on each repo at the frequency you chose.

Command (computing) Git job scheduling Repository (version control) Task (computing)

Published at DZone with permission of Juan Sebastian Lengyel. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • Mastering Git
  • Developer Git Commit Hygiene
  • A Comprehensive Guide to GitHub
  • Understanding Git

Partner Resources

×

Comments
Oops! Something Went Wrong

The likes didn't load as expected. Please refresh the page and try again.

ABOUT US

  • About DZone
  • Support and feedback
  • Community research
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 100
  • Nashville, TN 37211
  • support@dzone.com

Let's be friends:

Likes
There are no likes...yet! 👀
Be the first to like this post!
It looks like you're not logged in.
Sign in to see who liked this post!