Lab 4 – Git – 4 July 2023
Limited Time Offer!
For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly.
Master DevOps, SRE, DevSecOps Skills!
# Create a branch and Merge a Branch
500 git branch
501 git branch fea
502 git branch
503 git checkout fea
504 git branch
505 ls
506 touch fea1.txt;git add --all;git commit -m"fea1"
507 touch fea2.txt;git add --all;git commit -m"fea2"
508 ls
509 git checkout master
510 ls
511 git merge fea
512 ls
513 git branch
514 git remote add origin https://github.com/devopsschool-demo-temporary/demo4july.git
515 git push origin fea
516 history