This script will loop through each directory in the repository, checking if it is a Git repository. If it is, it will add all changes in the directory, commit them with a message that includes the directory path, and push the changes to the remote repository. Note that this script assumes that the repository is structured such that each directory is a separate Git repository.
#!/bin/bash | |
# The root directory of the Git repository | |
repo_root=$(git rev-parse --show-toplevel) | |
# Loop through each directory in the repository | |
for dir in $(find "$repo_root" -type d); do | |
# Navigate to the directory | |
cd "$dir" | |
# Here's a shell script that will git add, commit, and push each directory in the repository individually: | |
# Check if the directory is a Git repository | |
if [ -d .git ]; then | |
# Add all changes in the directory | |
git add . | |
# Commit the changes with a message that includes the directory path | |
git commit -m "Committing changes in directory $dir" | |
# Push the changes to the remote repository | |
git push | |
fi | |
# Navigate back to the repository root | |
cd "$repo_root" | |
done | |
# This script will loop through each directory in the repository, checking if it is a Git repository. If it is, it will add all changes in the directory, commit them with a message that includes the directory path, and push the changes to the remote repository. Note that this script assumes that the repository is structured such that each directory is a separate Git repository. |
I’m a DevOps/SRE/DevSecOps/Cloud Expert passionate about sharing knowledge and experiences. I am working at Cotocus. I blog tech insights at DevOps School, travel stories at Holiday Landmark, stock market tips at Stocks Mantra, health and fitness guidance at My Medic Plus, product reviews at I reviewed , and SEO strategies at Wizbrand.
Please find my social handles as below;
Rajesh Kumar Personal Website
Rajesh Kumar at YOUTUBE
Rajesh Kumar at INSTAGRAM
Rajesh Kumar at X
Rajesh Kumar at FACEBOOK
Rajesh Kumar at LINKEDIN
Rajesh Kumar at PINTEREST
Rajesh Kumar at QUORA
Rajesh Kumar at WIZBRAND