...
Code Block |
---|
go mod tidy |
Tips & Tricks
Tagging
...
To tag a branch (or move a tag): https://stackoverflow.com/a/8433371, https://stackoverflow.com/questions/20076233/replace-remote-tag-with-git
To delete a tag, see https://stackoverflow.com/questions/5480258/how-can-i-delete-a-remote-tag to delete a tag
To delete a branch https://stackoverflow.com/questions/2003505/how-do-i-delete-a-git-branch-locally-and-remotely, https://www.baeldung.com/git-delete-branch-locally-remotely
...
...
Tagging workflow
Release candidate: tag with lightweight tag (do not include -a)
Code Block | ||
---|---|---|
| ||
git tag v2.9.0
git push origin --tags |
Release:
Remove tag (both remote and local)
Tag with annotated tag
Code Block | ||
---|---|---|
| ||
git push origin :refs/tags/v2.9.0-rc1
git tag --delete v2.9.0-rc1
git tag -fa v2.9.0 -m "Version 2.9.0"
git push origin --tags |
Account Information
To get account info run
Code Block | ||
---|---|---|
| ||
./clio -u http://127.0.0.1:8889 get account fio.treasury ./clio.sh get account fio.treasury |
To compare account info between testnet and localnet, run
Code Block | ||
---|---|---|
| ||
./clio -u http://52.35.164.8:8888 get account fio.treasury |
...
./clio.sh get account fio.treasury |
Troubleshooting
Database Dirty Flag
...