Skip to content

Instantly share code, notes, and snippets.

@thesephist
Last active December 12, 2023 08:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thesephist/9eb8d3c9ee95ee91c521b2ae95893f7c to your computer and use it in GitHub Desktop.
Save thesephist/9eb8d3c9ee95ee91c521b2ae95893f7c to your computer and use it in GitHub Desktop.
A Klisp script to run "git pull" en masse on all of my folders. Run with `pull-all ~/src`, etc.
; pull-all
;
; Run "git pull" en masse on all git repositories with a default remote under a
; specific directory.
(defn indent (s bit)
(-> s
(split '\n')
(map (fn (line)
(if (empty? line)
line
(str bit line))))
(join '\n')))
(defn git-repo? (path)
(! (nil? (fs/stat (path/join path '.git')))))
(defn pull-git-repo! (path)
(let (output (exec 'bash'
(list '-c' (-> (str 'cd ' path '\;git pull 2>&1')))
''))
(-> (getc output 'stdout')
(indent ' '))))
(defn pull-all (path)
(let (entries (fs/ls path))
(-> entries
(filter (partial getc ? ,dir))
(each (fn (it)
(let
(name (getc it ,name))
(entry-path (path/join path name))
(if (git-repo? entry-path)
(do
(print '√ pulling' name)
(println ' —' (trim (pull-git-repo! entry-path))))
(println 'x not a git repo:' name))))))))
(defn main ()
(let (argv (drop (args) 3))
(if (empty? argv)
(pull-all '/Users/thesephist/src')
(apply pull-all argv))))
(main)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment