From ad721d84d72f5a50eb90ceb78cfa4b060081f853 Mon Sep 17 00:00:00 2001 From: "Li, Haodong (PG/T - Comp Sci & Elec Eng)" <hl01638@surrey.ac.uk> Date: Fri, 21 Feb 2025 11:19:26 +0000 Subject: [PATCH] Add new file --- Hello.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Hello.py diff --git a/Hello.py b/Hello.py new file mode 100644 index 0000000..97af7a1 --- /dev/null +++ b/Hello.py @@ -0,0 +1,6 @@ +cat - >Hello.py # type in print(“Hello Worldâ€) into STDIN and type Ctrl-D. +python3 Hello.py # Should print(“Hello Worldâ€) +git add Hello.py #Add a shiny new file to your repo. +git status # Note the output and compare with the next git status below +git commit -m "Added first piece of code" +git status # How does this differ from previous git status? What does this tell you? \ No newline at end of file -- GitLab