Skip to content

Commit

Permalink
update upstream tock url to use https protocol
Browse files Browse the repository at this point in the history
When the upstream url is prefaced by git://, git fetch upstream
hangs and fails with

    fatal: unable to connect to github.com:
    github.com[0: 140.82.114.3]: errno=Operation timed out

but succeeds when the upstream url is prefaced by https://. This
is likely because Github no longer supports the git:// protocol.
  • Loading branch information
nataliepopescu committed Jan 24, 2025
1 parent 68c60a2 commit 54e0b73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ out your copy locally.
```text
$ git clone [email protected]:username/tock.git
$ cd tock
$ git remote add upstream git://github.com/tock/tock.git
$ git remote add upstream https://github.com/tock/tock.git
```

### Step 2: Branch
Expand Down

0 comments on commit 54e0b73

Please sign in to comment.