git clone http://PCMabLTV-U1604x64.example.com/git/demo-project.git cd demo-project.git echo "This is the first commit" > Test.txt git add Test.txt git commit -m "First commit" echo "This is the second commit" >> Test.txt git add Test.txt git commit -m "Second commit" git tag SCommit-lw echo "This is the third commit" >> Test.txt git add Test.txt git commit -m "Third commit" echo "This is the fourth commit" >> Test.txt git add Test.txt git commit -m "Fourth commit" git tag -a FCommit-a -m "Fourth commit - annotated tag" echo "This is the fifth commit" >> Test.txt git add Test.txt git commit -m "Fifth commit" git push origin master git push origin FCommit-a git push origin SCommit-lw mkdir sub echo "This is the first sub commit" > sub/SubTest.txt git add sub/SubTest.txt git commit -m "First sub commit" echo "This is the second sub commit" >> sub/SubTest.txt git add sub/SubTest.txt git commit -m "Second sub commit" git tag SSubCommit-lw echo "This is the third sub commit" >> sub/SubTest.txt git add sub/SubTest.txt git commit -m "Third sub commit" echo "This is the fourth sub commit" >> sub/SubTest.txt git add sub/SubTest.txt git commit -m "Fourth sub commit" git tag -a FSubCommit-a -m "Fourth sub commit - annotated tag" echo "This is the fifth sub commit" >> sub/SubTest.txt git add sub/SubTest.txt git commit -m "Fifth sub commit" git push origin master git push origin FSubCommit-a git push origin SSubCommit-lw