Three steps to your first repository. No special tools beyond Git and a browser.
hello-world).You can initialize with a README if you want a non-empty repo in the browser.
On the empty repository page, copy the HTTPS or SSH URL, then:
# HTTPS (uses your izihub username + password or token) git clone https://dev.lancethedev.com/YOUR_USER/YOUR_REPO.git cd YOUR_REPO echo "# Hello" > README.md git add README.md git commit -m "Initial commit" git push -u origin main
SSH: add your public key under Settings → SSH / GPG Keys, then clone with
ssh://git@dev.lancethedev.com:222/YOUR_USER/YOUR_REPO.git
git checkout -b feature/my-change