]> njoseph.me Git - goutils.git/blame - README.md
Add .gitlab-ci.yml
[goutils.git] / README.md
CommitLineData
ff524faf
JN
1# Go Utils
2
3Utilities written in Go language, mostly to make use of cheap concurrency using goroutines.
4
5## Usage
6
7Compile and put goutils binary somewhere on your PATH.
8
9## Utils
10
11### Git Pull All
12
13Command to pull all the repositories under a given directory.
14
15```shell script
16cd dir/with/all/the/repos
17goutils git-pull-all
18
19# Alias
20goutils gpa
21```
22
23## Aliases
24
25```shell script
26alias gpa="goutils git-pull-all"
27```