The Protocol Land Git Remote Helper is a git-remote-helper designed to facilitate communication and synchronization with Protocol Land repositories.
Ensure the following dependencies are installed on your system:
git
node
- Choose one of the following package managers:
npm
,yarn
, orpnpm
To manage your Node.js installation, we recommend using nvm
, a robust node version manager.
npm install --global @protocol.land/git-remote-helper
yarn global add @protocol.land/git-remote-helper
pnpm add --global @protocol.land/git-remote-helper
To enable git push
or gain write access to repositories, you'll need an Arweave wallet keyfile. Assuming your Arweave wallet keyfile is stored at ~/private_folder/jwk_keyfile.json
, configure the keyfile path using git config
:
git config --global --add protocol.land.keyfile ~/private_folder/jwk_keyfile.json
Note
This globally adds the keyfile path for all repositories. If you prefer to use them selectively per repository, omit the --global
modifier in the git config
command.
Note
This functionality is compatible with UNIX-based operating systems such as Linux, macOS etc. For Windows users, leveraging the Windows Subsystem for Linux (WSL) is recommended.
To effectively manage push consent based on the cost of pushing changes, you can configure a Threshold Cost. Use the git config
command to set this threshold value:
git config --global --add protocol.land.thresholdCost 0.0003
This command sets the global threshold cost for push consent to 0.0003 AR
. When the estimated push cost exceeds this threshold, users will be prompted to consent to the fee before proceeding with the push.
Note
This threshold is set globally for all repositories. If you wish to apply different thresholds for specific repositories, use the command without the --global
modifier within the repository's directory.
Here's how it decides when to ask for your consent before uploading:
- No Set Threshold: Without the threshold set, you'll only be asked for consent if the upload size exceeds the free subsidy size (For example: Turbo bundler used here allows upto 105KB uploads for free).
- Over the Threshold: If the upload cost is more than the threshold, consent is requested only if the upload size is larger than what's freely allowed.
- Under the Threshold: For costs below the threshold, consent isn't needed, and uploads proceed automatically.
Adjusting the threshold cost allows users and organizations to maintain control over their expenditure on network fees, ensuring transparency and consent for every push operation that incurs a cost above the specified threshold.
Once the package is installed, you'll have access to the git-remote-proland
command in your PATH
from any working directory.
This command enables git
to synchronize with Protocol Land repositories.
git clone proland://YOUR_PROTOCOL_LAND_REPO_ID repo-name
For example, to clone Protocol Land's repository, run:
git clone proland://6ace6247-d267-463d-b5bd-7e50d98c3693 protocol-land
git clone proland://username/repo-name
For example, to clone Protocol Land's repository, run:
git clone proland://clabstest/protocol-land
To link any of Protocol Land's repositories as a remote in your Git project, use the following command:
git remote add origin proland://YOUR_PROTOCOL_LAND_REPO_ID
Replace YOUR_PROTOCOL_LAND_REPO_ID
with the specific ID of the Protocol Land repository you wish to associate with your project. This establishes a connection to the remote repository, allowing you to fetch, pull, and push changes seamlessly.