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
- Host: GitHub
- URL: https://github.com/atomicgo/atomicgo
- Owner: atomicgo
- License: mit
- Created: 2020-12-10T22:14:40.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2024-06-26T07:52:08.000Z (over 1 year ago)
- Last Synced: 2024-06-26T08:49:33.878Z (over 1 year ago)
- Topics: atomicgo, go, golang, golang-library
- Homepage: https://atomicgo.dev
- Size: 313 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
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!

## 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
```