Tut#6 push code from local branch to master branch| python tutorial | python tutorial for beginners

Опубликовано: 21 Октябрь 2024
на канале: Learn With Rubel
194
1

1.Check status:
$git status
2.Add new branch
$git branch feature-abc
or
$git checkout -b feature-abc
3.add untracked files
$git add .
or
$git add "add file path"
4.Commit file
$git commit -m "add testfile"
5.Push code to Bitbucket
$git push origin feature-abc

End To End Software Testing(Manual):
   • Video  

End To End Software Testing(Automation):
   • Video