Back to Browse

Part 14|Git Basics | Check in code | Azure Repos| Azure Dev Ops

300 views
Oct 17, 2023
22:04

Let this be your first check in Azure Repos. Git Concept explained and implemented. The process for checkin the code more or less remains the same even for Github. Git basic 3 Commands Initialize the repo git init   From local system create a link to remote git remote add origin https://github.com/khuranagaurav/RestAssured.git   Declare this branch as main git branch -M main Needed almost everyday git add . git commit –m “fix for the login failure, exception handling added” git push origin currentbranch:remotebranch git pull origin main if you face this error “fatal: refusing to merge unrelated histories" Run the below command git pull origin main --allow-unrelated-histories Some of my videos which can help you https://bit.ly/myshortcuts https://bit.ly/testing_tips bit.ly/proadvise https://bit.ly/testingbeyond Automation https://bit.ly/learn_automation https://bit.ly/automationbasics https://bit.ly/automationmusthave https://bit.ly/firstwebautomation https://bit.ly/codecheckin API Testing https://bit.ly/API_Testing 30 Days of postman https://bit.ly/30daysofpostman Test Data in Testing https://bit.ly/testdataintesting Github https://bit.ly/improveyourgithubprofile Selectorhub http://bit.ly/XPATH Screenshot Tools https://bit.ly/ss_tools Time Management https://bit.ly/manageyourday My favorite Screenshot Tools ( bit.ly/ss_tools)

Download

0 formats

No download links available.

Part 14|Git Basics | Check in code | Azure Repos| Azure Dev Ops | NatokHD