Posts Tagged github

Cloudflare & Python’s urllib

TL;DR: Trying to diagnose why my copr builds were abruptly failing, I found an interesting thing: Cloudflare’s Browser Integrity Check apparently doesn’t like Python’s urllib sending requests. The symptoms in Copr were weird: builds would try importing, and then fail with no log output. To me, trying to diagnose the problem made no sense – […]

, , ,

No Comments

Pushing an existing repo to github

Because I’ve had to do it a number of times, and had to look it up each time: Create the repo on github On the desktop/laptop/whatever, in Git Bash, change to the folder with the repo Run: git remote add origin [email protected]:username/repo.git, then git branch –set-upstream master origin/master and finally git pull And done.

,

No Comments

My Git for CS137 setup

I’ve been using Git and GitHub for all of my CS137 assignments, in part to keep the files in sync between my desktop and laptop, as well as the UW server that I use for testing. The keeping everything in source control is a bonus, but one that comes in handy, especially branching when I […]

, ,

No Comments

ssh-agent messiness & solving it

I’ve known about ssh-agent for a while, but as I was practically permanently using PuTTY (on Windows), I only bothered with learning about Pageant. But Git uses ssh to connect to github, and I was getting tired of typing in my password with every push. I got annoyed with InteliJ for making me type in […]

, , ,

No Comments