cyhhao 2 years ago
parent fd6dc0d054
commit 35c1974014

@ -16,11 +16,12 @@ yarn pkg
yarn install-mac
```
# git3 URI protocol
# git3 uri protocol
```
git3://[sender_wallet]@[contract_address or NS]:[chain_id]/<repo_name>
```
- [sender_wallet] Optional, the default value is `default`
- [contract_address or NS] Optional, the default value is `git3.w3q`
- [chain_id] Optional, the default value is 3334
- [chain_id] Optional, the default value is `3334`
- <repo_name> Required, your repo name

@ -25,7 +25,7 @@ GitRemoteHelper({
} else {
// use Default git3Address
git3Address = null
repoName = url.hostname
repoName = url.hostname.startsWith("/") ? url.hostname.slice(1) : url.hostname
}
}
else {

Loading…
Cancel
Save