designStudio for Cloud Marketplace
GitHub Setup
- git Init - set up the local repository
- git add . - add files recursively
- git commit "COMMIT STATMENT" - commit to staging
- git remote add origin "https://github.com/RMRanjit/designStudio.git" -- Add remote directory
- git push -u origin master --tags - to push files to remote
--Create SSH - go to root of the project
- mkdir .ssh
- ssh-keygen -t rsa -C "email" -select defaults
- the keyfuile shojld be generated here or in the users .ssh folder. look for messages
- Open up the .pub file and copy the entire content
- Go to github/settings/ssh and add the key
- Validate if you can connect to the github by using the command ssh -T git@github.com - you should be able to connect..