Skip to content

Instantly share code, notes, and snippets.

View c4arl0s's full-sized avatar
🏠
Remote

Carlos Santiago c4arl0s

🏠
Remote
  • Santiago Quick Soft Inc.
  • México City
  • 14:31 (UTC -06:00)
  • X @s4nt14g0o
View GitHub Profile
@c4arl0s
c4arl0s / git-ssh-error-fix.sh
Created December 14, 2021 04:24 — forked from Tamal/git-ssh-error-fix.sh
Solution for 'ssh: connect to host github.com port 22: Connection timed out' error
$ git clone git@github.com:xxxxx/xxxx.git my-awesome-proj
Cloning into 'my-awesome-proj'...
ssh: connect to host github.com port 22: Connection timed out
fatal: Could not read from remote repository.
$ # This should also timeout
$ ssh -T git@github.com
ssh: connect to host github.com port 22: Connection timed out
$ # but this might work
@c4arl0s
c4arl0s / part1.md
Created November 10, 2021 17:06 — forked from vlandham/part1.md
Feature Branches and Pull Requests : Walkthrough

Here's a little walkthrough of how Yannick and I are using feature branches and pull requests to develop new features and adding them to the project. Below are the steps I take when working on a new feature. Hopefully this, along with watching the process on Github, will serve as a starting point to having everyone use a similar workflow.

Questions, comments, and suggestions for improvements welcome!

Start with the latest on master

When starting a new feature, I make sure to start with the latest and greatest codebase:

git checkout master