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