From e3596d74ed629cc39cdbbbdc3a4c0a58bbb085b5 Mon Sep 17 00:00:00 2001 From: KyleGGriffin Date: Fri, 3 Mar 2017 19:29:00 -0600 Subject: [PATCH 1/6] my first commit --- grif5212-testfile.adoc | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 grif5212-testfile.adoc diff --git a/grif5212-testfile.adoc b/grif5212-testfile.adoc new file mode 100644 index 0000000..9801343 --- /dev/null +++ b/grif5212-testfile.adoc @@ -0,0 +1,2 @@ +Hello World + From 03736befb9510c01e0cff083cc57211ef638aaf3 Mon Sep 17 00:00:00 2001 From: KyleGGriffin Date: Fri, 3 Mar 2017 20:13:32 -0600 Subject: [PATCH 2/6] second commit --- grif5212-testfile.adoc | 1 + 1 file changed, 1 insertion(+) diff --git a/grif5212-testfile.adoc b/grif5212-testfile.adoc index 9801343..2a58a35 100644 --- a/grif5212-testfile.adoc +++ b/grif5212-testfile.adoc @@ -1,2 +1,3 @@ Hello World +Hello Mars From f3a01a96c5eb80f93a18689424282ee6a29b1c09 Mon Sep 17 00:00:00 2001 From: KyleGGriffin Date: Fri, 3 Mar 2017 20:24:51 -0600 Subject: [PATCH 3/6] third commit --- grif5212-testfile.adoc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/grif5212-testfile.adoc b/grif5212-testfile.adoc index 2a58a35..80b12c7 100644 --- a/grif5212-testfile.adoc +++ b/grif5212-testfile.adoc @@ -1,3 +1,4 @@ Hello World -Hello Mars +Hello Again +Go Git Go! From 30bd2177533882a0739fad95a328267bbae84309 Mon Sep 17 00:00:00 2001 From: kyleggriffin Date: Sat, 4 Mar 2017 03:09:46 +0000 Subject: [PATCH 4/6] script commit --- grif5212-Lab02.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 grif5212-Lab02.sh diff --git a/grif5212-Lab02.sh b/grif5212-Lab02.sh new file mode 100755 index 0000000..dc62588 --- /dev/null +++ b/grif5212-Lab02.sh @@ -0,0 +1,12 @@ +#!/bin/bash +# Starter shell script +# Rename as YourID-Lab02.sh +# Put commands below +# To run, type ./YourID-Lab02.sh (you need the "./") +# It must have permissions starting with a "7" + +mkdir -p ~/main/{A/{B,C,D},E/{F,G},H/{I,J/{K,L},M}} +touch ~/main/{A/{aa,B/bb,C/cc,D/dd},E/{ee,F/ff,G/gg},H/{hh,I/ii,J/{jj,K/kk,L/ll},M/mm}} +apt-get -y install tree +apt-get -y install git + From 03c36faf229f678f8ffa0b20fc771eff19699030 Mon Sep 17 00:00:00 2001 From: kyleggriffin Date: Fri, 10 Mar 2017 14:32:40 -0600 Subject: [PATCH 5/6] Script Commit --- grif5212-Lab02.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grif5212-Lab02.sh b/grif5212-Lab02.sh index dc62588..e659ccf 100755 --- a/grif5212-Lab02.sh +++ b/grif5212-Lab02.sh @@ -9,4 +9,4 @@ mkdir -p ~/main/{A/{B,C,D},E/{F,G},H/{I,J/{K,L},M}} touch ~/main/{A/{aa,B/bb,C/cc,D/dd},E/{ee,F/ff,G/gg},H/{hh,I/ii,J/{jj,K/kk,L/ll},M/mm}} apt-get -y install tree apt-get -y install git - +# This is a change From c23c1097ac1f5e7452ab6b627dc40882cc219efa Mon Sep 17 00:00:00 2001 From: kyleggriffin Date: Fri, 10 Mar 2017 15:18:07 -0600 Subject: [PATCH 6/6] Vagrantfile commit2 --- Vagrantfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Vagrantfile b/Vagrantfile index 27726a7..ac8445e 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -5,5 +5,6 @@ Vagrant.configure(2) do |config| config.vm.box = "precise64" config.vm.box_url = "/var/vagrant/boxes/precise64.box" + config.vm.provision :shell, path: "./grif5212-Lab02.sh" end