
The SSH service is not started by default, so you need to start it:
sudo raspi-config
Select Advanced, navigate to SSH and select Enable SSH.
Pre-requisites:
Download msysgit and install it.
Setup Git to use the SSH protocol. Using SSH is much better than the HTTPS access, since you don’t have to enter your password every now and then.
Open a Git Bash command prompt. Change the working directory to the location of the new project:
cd Projects/workspace-test/AndroidTest/
Initilize git:
$git init
$git add *
$git commit –m “Initial commit”
$git remote add origin [email protected]:InsomniacGeek/androidtest.git
$git push origin master