Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ClassRoster.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# Class Roster
- Michael Hilton (mhilton)
- Jack Johnson (jackj)
3 changes: 3 additions & 0 deletions student_facts.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
4th year phd student in cheme
matlab,python
I am a water skiier and snow skiier.
35 changes: 35 additions & 0 deletions terminal_commands.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
Commands used for homework one:

git clone https://github.com/cmu-crafting-software/Homework01

git branch jackj
git checkout jackj
git add ClassRoster.md
git commit
git push origin jackj

-------------------------------------
Manage Merge Conflicts

copy con student_facts.txt
"added info to text file"
git add student_facts.txt
git commit -m "added a file called student_facts.txt that includes my year and college"
git branch new_jackj
git checkout new_jackj
"added info to text file"
git add student_facts.txt
git commit -m "added new info to text file and deleted old info"
git checkout jackj
"added info to text file"
git add student_facts.txt
git commit -m "added coding languages"
git merge new_jackj
"added all three lines to text file"
git add student_facts.txt
git commit -m "resolved conflicts between two text files"
copy con terminal_commands.txt
"added all commands to txt file"
git add terminal_comands.txt
git commit -m "added final file for homework 1"
git push origin jackj