🏡

radicle

commands

initialize identity

rad auth

start peer node

rad node start

initialize rad

rad init

rad identity

rad .

rad inspect

rad inspect --payload

check sync node

rad sync status

fetch repo data from seeds

rad sync -f

check rad remote

git remote show rad

clone repo

rad clone rid:identity

push change to repo

git push rad [git-branch-name]

creating issue

rad issue open

list issue

rad issue

show issue

rad issue show [cob/generated id]

comment on issue

rad issue comment [cob/half of cob] --message "message here"

list inbox

rad inbox

show inbox detail

rad inbox show [num]

assign issue

rad issue assign [cob] --add did:key:userid

working on issue

git checkout -b [branch]
git add .
git commit -m "change"
git push rad HEAD:refs/patches

# if need to modify should use amend and force

show patch

rad patch show [patchid]

checkout patch

rad patch checkout [patchid]

diff with patch

rad patch diff e5f0a5a

resolving merge

git rebase main

merge patch

git checkout main
git merge patch/[patchid]
git push rad [branch]
← back