Welcome new Engineering fellows! This respotiory will serve as our Fall 2021 Backend and Frontend curriculum, including slides, and homework. By the end of the semester, you should be able to confidently create your own web applications using React and Firebase!
https://join.slack.com/share/zt-wc9zh3wh-SAvkU5iw6yzWx7EM34vAVA
https://txproduct.org/Full-Stack-Engineering-bb7fd893a34c4cdb909a5ffb4ccea3a3
This repository will be following a fork structure, meaning that fellows will commit to their own local respository while pulling new weekly content from this one upstream. Weekly content will be updated on the master branch, but a copy of all previous week's content will be available via branches.
**Note: From now on we will be referring to the tpeo/full-stack-learning-repo-fall-2021 project as the main repo and your individual repository as the forked repo.
Navigate to a directory where you'd like to keep all your projects. If you haven't already, we would recommend creating a folder like GitHub_Projects
or TPEO
.
- Go onto the main repository's Github page and click the Fork button
- Clone the repository locally in your project folder of choice by performing
git clone <your-repo-url>
- We need to set the forked repo's upstream url, allowing you to pull changes from the main, perform
git remote add upstream https://github.com/tpeo/full-stack-learning-repo-fall-2021.git
- Verify that the forked repo has the following remote properties by performing
git remote -v
$ git remote -v > origin https://github.com/<YOUR_GITHUB_NAME>/full-stack-learning-repo-fall-2021.git (fetch) > origin https://github.com/<YOUR_GITHUB_NAME>/full-stack-learning-repo-fall-2021.git(push) > upstream https://github.com/tpeo/full-stack-learning-repo-fall-2021.git (fetch) > upstream https://github.com/tpeo/full-stack-learning-repo-fall-2021.git (push)
- Add files
git add <files>
- Commit changes
git commit -m"<YOUR MESSAGE HERE>"
- Push
git push origin main
You should pull approximately every week when new content arrives. These steps will involve merging the main repository's main
branch with a forked repository's main
branch
- Make sure you are on the appropriate branch
git checkout main
- Fetch Content from Main Repository
git fetch upstream
- Merge Upstream with current local branch
git merge upstream/main
We realize that like everyone, we're not perfect so we'd love to hear constructive feedback. To suggest a change, open a pull request to the main repository and we'll get on it ASAP. Please DO NOT push directly to the main branch unless permitted to do so.