Here is a summary of essential Git commands every QA should be aware of:
git pull origin master
git checkout -b <branchname>
git add . (for all files) or git add <comma separated filenames with changes> (Only mentioned files)
git commit -m <branchname>
git push origin <branchname>
Copy Pull Request URL and paste in browser to generate Pull Request to be merged in master branch post Code Review.
No comments:
Post a Comment
Thanks a lot for your valuable Comment!