From c2aa00c43d70402029703a0e993ae28eeea33ee0 Mon Sep 17 00:00:00 2001 From: Ron McClellan Date: Mon, 7 May 2012 15:04:42 -0400 Subject: [PATCH 1/5] Changed a few typographical preferences --- src/hello.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hello.c b/src/hello.c index 86013a2..1087db7 100644 --- a/src/hello.c +++ b/src/hello.c @@ -5,9 +5,9 @@ int main (int argc, char **argv) { /* This is a test git app */ char in[50]; - printf ("Why, Hello there, Git!"); + printf ("Why, Hello there, GitHub!"); printf("\n"); - printf("Enter Your Name: "); + printf("Please Enter Your Full Name: "); scanf("%s", in); printf("Buon Giorno, %s!\n", in); return (0); From 284abe383213d21b012031f3be59c9c255ff1a9f Mon Sep 17 00:00:00 2001 From: Will Dages Date: Mon, 7 May 2012 15:15:41 -0400 Subject: [PATCH 2/5] Changed some text --- src/hello.c~ | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/hello.c~ diff --git a/src/hello.c~ b/src/hello.c~ new file mode 100644 index 0000000..86013a2 --- /dev/null +++ b/src/hello.c~ @@ -0,0 +1,15 @@ +#include + +int main (int argc, char **argv) { + + /* This is a test git app */ + + char in[50]; + printf ("Why, Hello there, Git!"); + printf("\n"); + printf("Enter Your Name: "); + scanf("%s", in); + printf("Buon Giorno, %s!\n", in); + return (0); + +} From 6fa518c6b7647331eec5a1ff26f33ec0c16783d2 Mon Sep 17 00:00:00 2001 From: Will Dages Date: Mon, 7 May 2012 15:22:48 -0400 Subject: [PATCH 3/5] Deleted the weird temp file I accidentally created. --- src/hello.c~ | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 src/hello.c~ diff --git a/src/hello.c~ b/src/hello.c~ deleted file mode 100644 index 86013a2..0000000 --- a/src/hello.c~ +++ /dev/null @@ -1,15 +0,0 @@ -#include - -int main (int argc, char **argv) { - - /* This is a test git app */ - - char in[50]; - printf ("Why, Hello there, Git!"); - printf("\n"); - printf("Enter Your Name: "); - scanf("%s", in); - printf("Buon Giorno, %s!\n", in); - return (0); - -} From 12ffe64b07d3277236a4ca49c414059b86aaede5 Mon Sep 17 00:00:00 2001 From: Will Dages Date: Mon, 7 May 2012 15:23:48 -0400 Subject: [PATCH 4/5] Added a please, to be polite --- src/hello.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hello.c b/src/hello.c index 1087db7..64b5147 100644 --- a/src/hello.c +++ b/src/hello.c @@ -5,9 +5,9 @@ int main (int argc, char **argv) { /* This is a test git app */ char in[50]; - printf ("Why, Hello there, GitHub!"); + printf ("Why, Hello there, Mister GitHub!"); printf("\n"); - printf("Please Enter Your Full Name: "); + printf("Please Enter Your Name: "); scanf("%s", in); printf("Buon Giorno, %s!\n", in); return (0); From 4cfd710e6e30c2d7c8dd8383c56bb75eea880090 Mon Sep 17 00:00:00 2001 From: Will Dages Date: Mon, 7 May 2012 15:54:49 -0400 Subject: [PATCH 5/5] Added some more text to the README --- src/README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/README b/src/README index 80d47c2..74bad5d 100644 --- a/src/README +++ b/src/README @@ -1 +1 @@ -This is to test out if READMEs show up online in subdirs off the main project. +This is to test out if READMEs show up online in subdirs off the main project. It's good to have a practice project.