Sale!

SE 441 Continuous Delivery and DevOps Homework 3 solved

Original price was: $35.00.Current price is: $30.00. $25.50

Category:

Description

5/5 - (4 votes)

1. Download and install Git (https://git-scm.com/downloads). At the time of writing the
current version is 2.20.1. The instructions will be different for Mac and Linux users, so use
your best judgment during the installation.
a) Start the installation process. When you are on the “Adjusting your PATH environment”
screen, make sure that you select the option that says “Use Git and optional Unix tools
from the Windows Command Prompt”. You should be able to keep all of the other defaults.
b) Verify that git has been installed correctly by running the following command from within
the Git Bash application to verify that the current version is 2.20.1:
git –version
2. If you don’t already have one, setup a Github (https://github.com/) account. The accounts
are free and you’ll be using them for your assignments. Personal opinion: you should be using
them for all of your school-related work anyway.
3. Log in to Github. Follow the link below and accept the assignment:
https://classroom.github.com/a/yoijN90m
Accepting the link will create a new repository in the classroom called:
hw3-
You may not see this repository in your normal Github account, but you will be able to access
it at the URL:
https://github.com/depaulcdm/hw3-
4. [25 points] Using the repository from the previous step, please perform the following tasks:
(a) [1 point] On your local machine, create a new directory called hw3 (e.g.
hw3cj). Change into the directory and initialize it as a Git repository. Provide a readable
screenshot of the contents of the new directory.
(b) [2 points] Create a new file called README.md and add some markdown text to it. Add
that file to your staging area, and commit your changes to your local repository. Make
several other commits to the README.md. Capture the output of the git log.
(c) [2 points] Push your local repository to Github:
git remote add origin ←-
https://github.com/depaulcdm/hw3-.git
git push –set-upstream origin master
SE-441 Homework 3
(d) [1 point] List the contents of the .git/refs/heads directory and capture a readable
screenshot.
(e) [2 points] Create two branches off of the master branch. List the contents of the .git/refs/heads
directory and capture a readable screenshot.
(f) [2 points] Change to the first branch and update and commit a change to the README.md
file. Merge that change to master. Review the history using git log and capture a
readable screenshot of the output.
(g) [2 points] Change to the second branch and update the same line in the README.md as you
did in step g. Commit your change and attempt to merge to master. Resolve any merge
conflicts and complete the merge. Push your master branch to Github.
(h) [2 points] From the Github ‘Code’ page, Then click the button containing the partial
SHA1 hash to the right of the commit message. Capture a readable screenshot of the
difference between that version of the README.md file and the prior version. Use a git
diff command to produce the same thing from the command line and capture a readable screenshot of the output. Review the history using git log and capture a readable
screenshot of the output.
(i) [1 point] Create a new file, .md (e.g. cj.md) and add some content. Capture the output of git status.
(j) [1 point] Add the new file to your local repository, but do not commit it. Capture the
output of git status.
(k) [2 points] Perform a git reset –mixed. What was the result?
(l) [1 point] Make another change to the file, but do not add it to the index or commit it to
your repository. Capture the output of git status.
(m) [3 points] Execute a git reset and capture the output of git status. What was the
affect of the reset on your index? What was the effect of the reset on the local file?
(n) [3 points] Execute a hard reset: git reset –hard. What was the affect of the reset on
the index? What was the effect of the reset on the local file?
Page 2 of 2