From 176914bfea1de3f04617ecde594c07600d8842c4 Mon Sep 17 00:00:00 2001 From: Leonardo Jimenez Date: Mon, 14 Apr 2014 17:38:12 -0400 Subject: Modified the way anonymous commiters configure the remote, the older version only worked for users with access to the repository as commiters. --- HACKING.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'HACKING.txt') diff --git a/HACKING.txt b/HACKING.txt index 460d02047..8e2c049c2 100644 --- a/HACKING.txt +++ b/HACKING.txt @@ -31,7 +31,7 @@ By Hand $ cd hack-on-pyramid # Configure remotes such that you can pull changes from the Pyramid # repository into your local repository. - $ git remote add upstream git@github.com:Pylons/pyramid.git + $ git remote add upstream https://github.com:Pylons/pyramid.git # fetch and merge changes from upstream into master $ git fetch upstream $ git merge upstream/master -- cgit v1.2.3 From 4e0d3f5ad9d556db1683a6fce5082543695c3f6f Mon Sep 17 00:00:00 2001 From: Steve Piercy Date: Sun, 20 Apr 2014 03:46:06 -0700 Subject: - Correct 80-column lines specification to 79 to be compliant with PEP8 and consistent with doc to which this line refers. --- HACKING.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'HACKING.txt') diff --git a/HACKING.txt b/HACKING.txt index 8e2c049c2..1386be3af 100644 --- a/HACKING.txt +++ b/HACKING.txt @@ -149,7 +149,7 @@ Coding Style ------------ - PEP8 compliance. Whitespace rules are relaxed: not necessary to put - 2 newlines between classes. But 80-column lines, in particular, are + 2 newlines between classes. But 79-column lines, in particular, are mandatory. See http://docs.pylonsproject.org/en/latest/community/codestyle.html for more information. -- cgit v1.2.3