Skip to content

Instantly share code, notes, and snippets.

@tspspi
Created November 7, 2019 18:36
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tspspi/b5971642bae94b9b0465e8f653453b01 to your computer and use it in GitHub Desktop.
Save tspspi/b5971642bae94b9b0465e8f653453b01 to your computer and use it in GitHub Desktop.
Fetch or pull all own github repositories

What is this

This is a short script that uses a personal access token from a github account (created via Profile > Settings > Developer Settings > Personal Access Tokens) that fetches a list of all repositories owned by a given user and either clones them into the current directory - or if they exist performs a pull.

The script puts all repositories in directories relative to the current working directory.

License

Redistribution and use in source and binary forms, with or without modification, are permitted.

  1. Redistributions of source code must retain this list of conditions and the following disclaimer.

  2. Redistributions in binary form must reproduce this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FREEBSD PROJECT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

The views and conclusions contained in the software and documentation are those of the authors and should not be interpreted as representing official policies, either expressed or implied.

BEGIN { FS = "\"" };
{ print $4 };
#!/bin/sh
# Configuration
GITHUB_TOKEN="FILLIN"
GITHUB_USER="FILLIN"
# Script
CURRENT_PAGE=1
REPOCOUNT=1
while [ ${REPOCOUNT} -gt 0 ]; do
REPOLIST=`curl -s -u ${GITHUB_USER}:${GITHUB_TOKEN} https://api.github.com/user/repos?affiliation=owner\&page=${CURRENT_PAGE} | grep 'ssh_url' | awk -f githubAllRepos.awk`
for REPO in ${REPOLIST}; do
REPONAME=`echo ${REPO} | awk -F/ '{ print $2 };' | awk -F. '{ print $1 }'`
# Check if directory exists
if [ ! -d ${REPONAME} ]; then
echo "${REPONAME} does not exist, cloning"
git clone ${REPO} ${REPONAME}
else
echo "${REPONAME} exists, pulling"
CURDIR=`pwd`
cd ${REPONAME}
git pull
cd ${CURDIR}
fi
done
CURRENT_PAGE=`expr ${CURRENT_PAGE} + 1`
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment