Posts tagged with

Git

Two git repositories on the same server for a single user

I discovered that it is not possible, at least not for the same user, to have two git projects in the same account as github uses the ssh key to identify your repository. Once I realized that this was the problem, the quick fix was to clone the repository in another account. I created a new user and …

Read more β†’

How to use GIT

Set up a git account on github.com. Upload your ssh key. To verify this is done click on top right Account Settings, then ssh keys on left. Then proceed to create a repository on Github. Don’t add a README. On your local machine, go into your application folder. Type git init This creates a .git …

Read more β†’