Skip to content
On this page
Common Issues
Bitbucket SSH Setup
- ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
- OpenSSH Authentication Agent aanzetten
- ssh-add $path_naar_id_rsa
- Add id_rsa.pub to BitBucket
- Add to known hosts
ssh git@bitbucket.orgen accepteren
- Done
Forge doesn't find your branch after changing it
- Log in through ssh and navigate to the project root
- In the
.git/configfile change the fetch config for theoriginremote fromfetch = +refs/heads/<old branch>:refs/remotes/origin/<old branch>tofetch = +refs/heads/<new branch>:refs/remotes/origin/<new branch> - Run
git checkout <new branch>andgit fetch - Now Forge should be able to deploy your from the new branch