- To establish good
gitcollaboration practices
- To create an
index.htmlwebpage that has a link to each of your profile pages.
- Assign one person to fork the original repository. This will be the origin-owner.
- The origin-owner should add each of the group-members as a contributor to the project.
- Each group-member should then clone the project from their origin-owner
- As each of you complete a
profile.html, ensure that you are pushing your changes.- changes can be pushed by executing the following commands.
git add .git commit -m 'update message'git push -u origin master
- changes can be pushed by executing the following commands.
- You can keep in sync by executing the following commands
git pull origin mastergit add .git commit -m 'merged with master'git push -u origin master
- Edit the
index.htmlpage to include a link to each of the newly createdprofile.htmlpages.
- Navigate to the settings tab of the repository.
- Scroll down until you see
GitHub Pagessection - Select
Use the master branch for Github Pages - Scroll down until you see
Your site is published at ... - Copy the link associated with your site.
- Navigate to your repository.
- Edit the description of your respotory by adding a link to the site.