Some Notes:
- Steps 1 should only be done once by the project lead.
- Steps 2-3 done once by all contributors/teammates.
- Steps 4-10 done by all contributors/teammates.
- Steps 11 should only be done by the project lead.
- Steps 12 should be done by all contributors/teammates.
- Create a new repository in your organization.
- merge the changes
- Fork
- Clone
git clone FORKED_REPO_URL - Add upstream as a remote repository
git remote -vgit remote add upstream Organization_URL(Organization_URL = The Organization repo link)git remote -vyou should see 2 origin and 2 upstream remotes
- Create and checkout to a new feature branch
git checkout -b Feature_Name
- Add html file that has
<h1>Hello from YOUR_NAME</h1> - Add your work to the staging area
git add . - Save the staged changes via commit
git commit -m “” - Push the new branch to origin g
it push -u origin Feature_Name - Submit pull request
- Update the local master by pulling changes from Upstream master
pull upstream master