You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wcycck1/test1.java

14 lines
328 B

2 months ago
#
echo "Hello, world!" > hello.txt
git add .
git commit -m "Initial commit with v1"
# v2
echo "Hello, Git!" > hello.txt
git add .
git commit -m "Updated to v2"
# v3
echo "Hello, version control!" > hello.txt
git add .
git commit -m "Updated to v3"