0 Comments

Adding an existing project to GitHub using the command line – GitHub Docs

git init -b main Source: Adding an existing project to GitHub using the command line – GitHub Docs

0 Comments

How-to Deploy to GitHub using command line git

…or create a new repository on the command line echo “# passwd” >> README.md git init git add README.md git commit -m “first commit” git branch -M main git remote add origin git@github.com:ubuntu-deploy/passwd.git git push -u origin main …or push an existing repository from the command line git remote add origin git@github.com:ubuntu-deploy/passwd.git git branch -M […]

0 Comments

unix – ssh-copy-id no identities found error – Stack Overflow

Source: unix – ssh-copy-id no identities found error – Stack Overflow

0 Comments

Ssh-keygen is a tool for creating new authentication key pairs for SSH. This is a tutorial on its use, and covers several special use cases.

Ssh-keygen is a tool for creating new authentication key pairs for SSH. This is a tutorial on its use, and covers several special use cases. Source: Ssh-keygen is a tool for creating new authentication key pairs for SSH. This is a tutorial on its use, and covers several special use cases.

0 Comments

linux – permission denied on authorized_key file – Super User

Source: linux – permission denied on authorized_key file – Super User

0 Comments

How can I indicate the Git username and password in Capistrano’s deploy.rb?

Source: How can I indicate the Git username and password in Capistrano’s deploy.rb?

0 Comments

Deploy Ruby On Rails to Ubuntu 20.04 Focal Fossa (2021 Update) | GoRails

A guide to setting up a Ruby on Rails production environment on Ubuntu 20.04 Focal Fossa with Git, MySQL, PostgreSQL, and Capistrano Source: Deploy Ruby On Rails to Ubuntu 20.04 Focal Fossa (2021 Update) | GoRails

0 Comments

How to Write Rails Forms | Learn to Code in Boston with Launch Academy

Launch Academy’s knowledge base for learning to code. Source: How to Write Rails Forms | Learn to Code in Boston with Launch Academy

0 Comments

Rails Local Development over HTTPS using a Self-Signed SSL Certificate | Tandem

last updated August 29, 2017 I found myself in a peculiar situation recently. I was integrating a Single Sign On workflow with Google as the IdP (read more about it here). After authenticating on Google, a callback url is provided to handle the response. Google requires that the connection be encrypted (read HTTPS). But, the […]

0 Comments

17 Practical psql Commands That You Don’t Want To Miss

In this tutorial, you will get a list of the most commonly used psql commands that help you interact with the PostgreSQL database server more effectively. Source: 17 Practical psql Commands That You Don’t Want To Miss