4a. Session 4 - Part 1 - Code From Class - here
5a. Session 5 - Diagram a URL
- Branching is the idea of creating a copy of the code and then adding new code for a task on a branch, and allows you to merge branches together. For example, I will create a new branch for my task and then I will create a pull request to have my branch mergeed to the master branch.
- Create a project on WebStorm
- Add Readme.md and .gitignore to the project files
- Go to VCS->Import to Version Control->Share on Github
- Share it and make the first initial commmit
- Your Partner needs to clone the repository
- You need to add your partners's githubID to the project on github. On Github go to settings and then manage access, where you will click add collaborators to add them to the project. You use their GithubID
- Once your partner clones the repository they need to create a branch, complete their task, and then push the branch to the repository. Note: If you get access denied then you have not been added as a collaborator to the repo.
- Once you push the code branch up to GitHub then create a pull request to have the code merged and someone needs to merge it.
- Once the code is merged then you need to pull the code by going to VCS->GIT->Pull in webstorm and remember to check the master branch for the pull
- Rinse and repeat steps 7, 8, 9 to do more tasks.
Note: If you put a bunch of code in a branch then you will cause problems. You need to keep your branches and commits organized because there will be merge conflicts, which means GIT can't figure out what code should be merged automatically and then you will be prompted to manually edit the files on GitHub or on WebStorm.
Forking copies the repo on Git to your account and allows to push and make changes. Cloning copies the code to your local computer. To send changes to a cloned repo, you need to be an admin / collaborator, which the owner of the repo needs to add you to. Forking allows you to take a copy and not be added as a collaborator, but still send your changes to the origin / original repo you forked from, so that the owner of the repo can incorporate your changes without needing to add you as a collaborator.
- Click fork on source repo to copy to your account
- Once the source repo is copied clone it from your account
- Branch, edit, commit, push changes to your account
- Create a new pull request and click "Compare across forks" to send a pull request to the source repository, make sure you have the correct account and repos selected on the left i.e. the source account.
- Once the pull request is created then the owner of the source acc