An open API service indexing awesome lists of open source software.

https://github.com/atomicgo/atomicgo

🔗 Shared resources and assets for the AtomicGo organisatzion
https://github.com/atomicgo/atomicgo

atomicgo go golang golang-library

Last synced: 8 months ago
JSON representation

🔗 Shared resources and assets for the AtomicGo organisatzion

Awesome Lists containing this project

README

          

AtomicGo

---


AtomicGo Libraries
|
Conventions
|
Contributing

---

AtomicGo is a collection of small Go libraries, which help you to code faster and more efficient!

![AtomicGo](/assets/header.png?raw=true "AtomicGo")

## Clone all repos

Use this bash script to clone all atomicgo repos.
Useful for atomicgo contributors.

```bash
#!/bin/bash

# GitHub organization name
ORG="atomicgo"

# GitHub API URL to get the list of repositories
API_URL="https://api.github.com/orgs/$ORG/repos?per_page=100"

# Fetch all repository names
repos=$(curl -s $API_URL | jq -r '.[].clone_url')

# Clone each repository
for repo in $repos; do
git clone $repo
done
```