update readme 54390ed7
Steve · 2024-08-17 11:21 1 file(s) · +15 −4
README.md +15 −4
24 24
25 25
This script is written in Go so there are a few install options.
26 26
27 +
### Install with Homebrew
28 +
```
29 +
brew install stevedylandev/radicalize/radicalize
30 +
```
31 +
27 32
### Install directly with Go
28 33
Have Go installed and run this command.
29 34
```
39 44
go install .
40 45
```
41 46
42 -
### Install with Homebrew
47 +
## Usage
48 +
49 +
To start backing up your repos simply run the command `radicalize` in the parent directory of all your projects. This will creep through all directories for .git repos on a surface level, so if you have sub directories you will want to navigate to those separately. After finding all git repos you can select which ones you would like to init to your Radicle node. Once you have confirmed the selection it will work through each repo and initialize it.
50 +
51 +
![radicalize gif](https://dweb.mypinata.cloud/ipfs/QmXog19G7QvqHQUMH4R6aCaq8J9qfKAU9ethr51PUjtKjM)
43 52
44 -
TBD
53 +
### Private Repos
45 54
46 -
## Usage
55 +
By default the program will make repos public, however you can pass in the `--private` flag so all selected repos will be private instead
47 56
48 -
To start backing up your repos simply run the command `radicalize` in the parent directory of all your projects. This will creep through all directories for .git repos on a surface level, so if you have sub directories you will want to navigate to those separately. After finding all git repos you can select which ones you would like to init to your Radicle node. Once you have confirmed the selection it will work through each repo and initialize it.
57 +
```
58 +
radicalize --private
59 +
```