You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: agile/06-reading.md
-3Lines changed: 0 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -13,9 +13,6 @@
13
13
-[Elements of Scrum](https://www.amazon.com/Elements-Scrum-Chris-Sims-ebook/dp/B004O0U74Q/ref=sr_1_2?s=digital-text&ie=UTF8&qid=1546492282&sr=1-2&keywords=elements+of+scrum)[Part I and Part II]
14
14
- (Go ahead and read the whole thing if you find yourself interested, its not too long)
15
15
16
-
**Due Friday**
17
-
- Healthcare.gov Case Part A (provided on Slack) - Read by Friday
18
-
19
16
## Additional Resources
20
17
21
18
A shorter alternative to "Elements of Scrum" (in case you run out of time)
Copy file name to clipboardExpand all lines: apis/apireadings.md
+8-7Lines changed: 8 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,13 @@
1
1
## Reading
2
-
***(required)**[Aaron Swartz’s A Programmable Web](https://archive.org/details/AaronSwartzAProgrammableWeb/page/n3/mode/2up): Chapter 1 -"Introduction: A Programmable Web"
3
-
***(required)**[Aaron Swartz’s A Programmable Web](https://archive.org/details/AaronSwartzAProgrammableWeb/page/n3/mode/2up): Chapter 2 -"Building for Users: Designing URLs"
4
-
***(recommended)**[Aaron Swartz’s A Programmable Web](https://archive.org/details/AaronSwartzAProgrammableWeb/page/n3/mode/2up): Chapter 3 -"Building for Search Engines: Following Rest"
5
-
***(required)**[Aaron Swartz’s A Programmable Web](https://archive.org/details/AaronSwartzAProgrammableWeb/page/n3/mode/2up): Chapter 5 -"Building a Platform: Providing APIs"
6
-
*[Aaron Swartz’s A Programmable Web](https://archive.org/details/AaronSwartzAProgrammableWeb/page/n3/mode/2up): Rest of the book is not required, but Chapter 7 is about Open Source if you're interested.
7
-
***(required)** APIs that suck [video] - [https://www.infoq.com/presentations/API-design-mistakes]
8
2
9
-
Additioanl Resources
3
+
*[Aaron Swartz’s A Programmable Web](https://archive.org/details/AaronSwartzAProgrammableWeb/page/n3/mode/2up)
Copy file name to clipboardExpand all lines: git/12-workflow.md
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -7,13 +7,13 @@ When working with branches, here is the general workflow to adhere to.
7
7
1. Before starting work:
8
8
9
9
```bash
10
-
# always start your branching from the master branch
11
-
git checkout master
10
+
# always start your branching from the main branch
11
+
git checkout main
12
12
13
13
# pull the latest
14
14
git pull
15
15
16
-
# create a new branch, branch-ed off of the master branch
16
+
# create a new branch, branch-ed off of the main branch
17
17
git checkout -b my-awesome-feature
18
18
```
19
19
@@ -33,13 +33,13 @@ When working with branches, here is the general workflow to adhere to.
33
33
git push
34
34
```
35
35
36
-
3. Also make sure to periodically pull from master:
36
+
3. Also make sure to periodically pull from main:
37
37
38
38
```bash
39
-
git pull origin master
39
+
git pull origin main
40
40
```
41
41
42
-
**Pulling from master periodically is very important!** This will keep your code relatively in-sync and prevent deferring massive merge conflicts down the line.
42
+
**Pulling from main periodically is very important!** This will keep your code relatively in-sync and prevent deferring massive merge conflicts down the line.
43
43
44
44
4. When you're done with your work
45
45
@@ -50,15 +50,15 @@ When working with branches, here is the general workflow to adhere to.
50
50
git status
51
51
```
52
52
53
-
then open up GitHub and **issue a pull request back to master**.
53
+
then open up GitHub and **issue a pull request back to main**.
54
54
55
55
## Workflow Types
56
56
57
57
### Feature Branches (recommended)
58
58
59
59

60
60
61
-
The feature branch workflow is where every small or large feature gets its own branch. These branches are shortlived and are quickly merged back into master. Each feature branch corresponds to a pull request and the branch is deleted after the PR is merged.
61
+
The feature branch workflow is where every small or large feature gets its own branch. These branches are shortlived and are quickly merged back into main. Each feature branch corresponds to a pull request and the branch is deleted after the PR is merged.
0 commit comments