Creating a GitBee Account

1.

Generate an SSH key

~$ ssh-keygen -f ~/.ssh/id_gitbee

2.

Copy Your new Public Key

~$ cat ~/.ssh/id_gitbee.pub | wl-copy # Just copy the whole file idk

3.

Connect to the Guest Access Terminal

~$ ssh guest@git.honeybeeks.net

4.

Sign Up or Login

guest@queenbee > signup

5.

Register Your SSH Key with GitBee

guest@queenbee > gitb-reg
(gitb-reg)
SSH RSA Public Key: # Paste ~/.ssh/id_gitbee.pub here

guest@queenbee > exit # We're done with GuestBee, sign out for now.

Connecting to GitBee

1.

Edit Local SSH Config

~$ vi ~/.ssh/config


Host gitbee
HostName git.honeybeeks.net
User git
Port 22
IdentityFile ~/.ssh/id_gitbee
~
~
~
:wq!

2.

Connect to GitBee Interactive Terminal

~$ ssh gitbee