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