All Projects → KillianKemps → Git-Repo-Update

KillianKemps / Git-Repo-Update

Licence: MIT license
A script to update all git repositories in current folder

Programming Languages

shell
77523 projects

Git-Repo-Update

A script to update all git repositories in the current folder

Installation

Installing the script is very easy. To make it easy to use and automatically updated without any user action, we will clone it among the other Git projects and create a symlink in the parent folder. It will then update all child folders including itself.

The following schema shows the update script among your Git repositories.

+-- One-git-folder/
+-- Git-Repo-Update/
+-- Another-git-folder/
+-- update
  1. Let's begin. First, move to your usual workspace containing all your Git projects and clone the repo.
git clone https://github.com/KillianKemps/Git-Repo-Update
  1. Move to the cloned repo:
cd Git-Repo-Update
  1. Make the script executable:
chmod +x repo-update.sh
  1. Move to the parent folder containing all git repositories to update
cd ..
  1. Create a symlink:
ln -s Git-Repo-Update/repo-update.sh update

That's all!

Usage

Usual update process is the following: It will first do a git stash to put your work in progress on a side, then a git pull --rebase on your master branch and go back to your current branch if you were not on master and finally a git stash pop to put back your work in progress.

To update all the repositories contained in your workspace asking for a confirmation every time.

./update

Or if you're sure to update every repo, you can force to yes:

./update -f

To prune remotes at the same time (does additionnal fetch request):

./update -p
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].