File tree Expand file tree Collapse file tree 1 file changed +19
-2
lines changed
Filter options
Expand file tree Collapse file tree 1 file changed +19
-2
lines changed
Original file line number Diff line number Diff line change @@ -61,12 +61,29 @@ that you make. It is not tracked in your personal repository on
61
61
github _.
62
62
63
63
Just for your own satisfaction, show yourself that you now have a new
64
- 'remote', with ``git remote -v show ``, giving you something like::
64
+ 'remote', with ``git remote -v ``, giving you something like::
65
65
66
66
upstream git://github.com/matplotlib/matplotlib.git (fetch)
67
67
upstream git://github.com/matplotlib/matplotlib.git (push)
68
68
origin git@github.com:your-user-name/matplotlib.git (fetch)
69
69
origin git@github.com:your-user-name/matplotlib.git (push)
70
70
71
- .. include :: links.inc
72
71
72
+ Read-only remote / push access to ``matplotlib/matplotlib ``
73
+ -----------------------------------------------------------
74
+
75
+ If you have commit rights to ``matplotlib/matplotlib `` the ``git:// ``
76
+ protocol URL will still be read-only (due to it not supporting
77
+ authentication and restrictions on github's side). To reduce the
78
+ chance of accidentally pushing to upstream, we suggest setting up a
79
+ read-only remote of upstream as above and a read/write remote as ::
80
+
81
+ git remote add DANGER git@github.com:matplotlib/matplotlib.git
82
+
83
+ or ::
84
+
85
+ git remote add HOLY_COMMIT_RIGHTS_BATMAN https://github.com/matplotlib/matplotlib.git
86
+
87
+
88
+
89
+ .. include :: links.inc
You can’t perform that action at this time.
0 commit comments