Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save carlosqueiroz/4df0fe5dd3c045241efb86b33e3d75ea to your computer and use it in GitHub Desktop.
Save carlosqueiroz/4df0fe5dd3c045241efb86b33e3d75ea to your computer and use it in GitHub Desktop.
GIT HUB ATRAS DE FIREWALL
configurar
https://www.youtube.com/watch?v=iVUnXw64Ez8
/////////////
I have had this same problem the solution was edit ~/.ssh/config e put this lines:
sudo nano ~/.ssh/config
Host github.com
Hostname ssh.github.com
Port 443
///////////
git config --local -e
and change this(using vim you need to type the keyboard 'i' for insert):
url = git@github.com:username/repo.git
for this:
url = https://github.com/username/repo.git
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment