File tree Expand file tree Collapse file tree 5 files changed +11
-11
lines changed Expand file tree Collapse file tree 5 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 1
1
# Contributing
2
2
Please note that this project is released with a
3
- [ Contributor Code of Conduct] ( https://github.com/adafruit/circuitpython/blob/master /CODE_OF_CONDUCT.md ) .
3
+ [ Contributor Code of Conduct] ( https://github.com/adafruit/circuitpython/blob/main /CODE_OF_CONDUCT.md ) .
4
4
By participating in this project you agree to abide by its terms. Participation
5
5
covers any forum used to converse about CircuitPython including unofficial and official spaces. Failure to do
6
6
so will result in corrective actions such as time out or ban from the project.
Original file line number Diff line number Diff line change @@ -55,12 +55,12 @@ Contributing
55
55
------------
56
56
57
57
See
58
- `CONTRIBUTING.md <https://github.com/adafruit/circuitpython/blob/master /CONTRIBUTING.md >`__
58
+ `CONTRIBUTING.md <https://github.com/adafruit/circuitpython/blob/main /CONTRIBUTING.md >`__
59
59
for full guidelines but please be aware that by contributing to this
60
60
project you are agreeing to the `Code of
61
- Conduct <https://github.com/adafruit/circuitpython/blob/master /CODE_OF_CONDUCT.md> `__.
61
+ Conduct <https://github.com/adafruit/circuitpython/blob/main /CODE_OF_CONDUCT.md> `__.
62
62
Contributors who follow the `Code of
63
- Conduct <https://github.com/adafruit/circuitpython/blob/master /CODE_OF_CONDUCT.md> `__
63
+ Conduct <https://github.com/adafruit/circuitpython/blob/main /CODE_OF_CONDUCT.md> `__
64
64
are welcome to submit pull requests and they will be promptly reviewed
65
65
by project admins. Please join the
66
66
`Discord <https://adafru.it/discord >`__ too.
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ The latest documentation can be found at:
5
5
http://circuitpython.readthedocs.io/en/latest/
6
6
7
7
The documentation you see there is generated from the files in the whole tree:
8
- https://github.com/adafruit/circuitpython/tree/master
8
+ https://github.com/adafruit/circuitpython/tree/main
9
9
10
10
Building the documentation locally
11
11
----------------------------------
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ Design Guide
3
3
4
4
This guide covers a variety of development practices for CircuitPython core and library APIs. These
5
5
APIs are both `built-into CircuitPython
6
- <https://github.com/adafruit/circuitpython/tree/master /shared-bindings> `_ and those that are
6
+ <https://github.com/adafruit/circuitpython/tree/main /shared-bindings> `_ and those that are
7
7
`distributed on GitHub <https://github.com/search?utf8=%E2%9C%93&q=topic%3Acircuitpython&type= >`_
8
8
and in the `Adafruit <https://github.com/adafruit/Adafruit_CircuitPython_Bundle >`_ and `Community
9
9
<https://github.com/adafruit/CircuitPython_Community_Bundle/> `_ bundles. Consistency with these
Original file line number Diff line number Diff line change 90
90
last_rev=" v1.0"
91
91
fi
92
92
93
- # get a list of hashes between last revision (exclusive) and master
94
- hashes=$( git log --format=format:" %H" --reverse ${last_rev} ..master )
95
- # hashes=$(git log --format=format:"%H" --reverse ${last_rev}..master | $AWK '{if (NR % 10 == 0) print $0}') # do every 10th one
93
+ # get a list of hashes between last revision (exclusive) and main
94
+ hashes=$( git log --format=format:" %H" --reverse ${last_rev} ..main )
95
+ # hashes=$(git log --format=format:"%H" --reverse ${last_rev}..main | $AWK '{if (NR % 10 == 0) print $0}') # do every 10th one
96
96
97
97
for hash in $hashes ; do
98
98
182
182
183
183
done
184
184
185
- # checkout master and cleanup
186
- git checkout master
185
+ # checkout main and cleanup
186
+ git checkout main
187
187
$RM $pystoneavg
You can’t perform that action at this time.
0 commit comments