Рет қаралды 5,893
You can get all snowflake Videos, PPTs, Queries, Interview questions and Practice files in my Udemy course for 499 rupees.. I will be updating this content and will be uploading all new videos in this course. And you will have lifelong access to these videos and materials.
My Snowflake Udemy Course:
www.udemy.com/...
Use the coupon below to get it for 499 rupees.
Coupon: BD5C217109E85F629675
-----------
Git Commands:
1) To initialize/start git
git init
2) To clone the repository
git clone repo-link
3) To pull only modified files to desktop
git pull repo-link
4) To switch to other branch if needed
git checkout dev
-- Now add/modify the content from any IDE or Desktop
5) To view all the uncommitted changes
git status
6) To add the changes after adding/modifying the content
git add .
7) To commit the changes
git commit -m "Comments"
8) To push the changes to GitHub
git push -- by default it pushes the changes to the branch we are currently in
git push branch-name -- To push the changes to specified branch
9) To merge the changes to main/master branch
git merge main/master
(In general we may not have access to merge to main/master branch directly, so we have to create a pull request and get it approved by the lead or the one who has approval permission and then merge it to main/master branch)