Lab 4 – Git – 4 July 2023

# 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
Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

0 Comments
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x