Skip to content
On this page

Common Issues

Bitbucket SSH Setup

  1. ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
  2. OpenSSH Authentication Agent aanzetten
  3. ssh-add $path_naar_id_rsa
  4. Add id_rsa.pub to BitBucket
  5. Add to known hosts
    • ssh git@bitbucket.org en accepteren
  6. Done

Forge doesn't find your branch after changing it

  • Log in through ssh and navigate to the project root
  • In the .git/config file change the fetch config for the origin remote from fetch = +refs/heads/<old branch>:refs/remotes/origin/<old branch> to fetch = +refs/heads/<new branch>:refs/remotes/origin/<new branch>
  • Run git checkout <new branch> and git fetch
  • Now Forge should be able to deploy your from the new branch