Pushing Git Branches To Remote Repositories | Git Tutorials #19

  Рет қаралды 70,419

CodeWithHarry

CodeWithHarry

Күн бұрын

This video is a part of my 2020 git tutorial series. Click here to access the complete course: • Complete Git Tutorials...
►Click here to subscribe - / @codewithharry
Best Hindi Videos For Learning Programming:
►Learn Python In One Video - • Python Tutorial In Hin...
►Python Complete Course In Hindi - • Python Tutorials For A...
►C Language Complete Course In Hindi -
• C Language Tutorials I...
►JavaScript Complete Course In Hindi -
• JavaScript Tutorials I...
►Learn JavaScript in One Video - • JavaScript Tutorial
►Learn PHP In One Video - • Learn Php In One Video...
►Django Complete Course In Hindi -
• Python Django Tutorial...
►Machine Learning Using Python - • Machine Learning Tutor...
►Creating & Hosting A Website (Tech Blog) Using Python - • [Hindi] Web Developmen...
►Advanced Python Tutorials - • Intermediate/Advanced ...
►Object Oriented Programming In Python - • Object Oriented Progra...
►Python Data Science and Big Data Tutorials - • Python Data Science an...
Follow Me On Social Media
►Website (created using Flask) - www.codewithhar...
►Facebook - / codewithharry
►Instagram - / codewithharry
►Personal Facebook A/c - / geekyharis
Twitter - / haris_is_here

Пікірлер: 537
@SyedHaris007
@SyedHaris007 4 жыл бұрын
just completed the series and I am impressed by your way of teaching. I think there should be more videos for concepts like Private repos, Pull request and forking.
@mrankushtechnical
@mrankushtechnical 3 жыл бұрын
Yeah true...
@pukhrajsaini9730
@pukhrajsaini9730 4 жыл бұрын
i have completed the playlist successfully and earn great understanding on git, Thanks for making git playlist Harry bro make a tutorial on private remote repositories
@aruneshnaha4113
@aruneshnaha4113 3 жыл бұрын
what about forking?
@ton_moy
@ton_moy 3 жыл бұрын
When I started watching this playlist, I do not know how to commit. After completed, Now I am confident on Git. Thank you, Sir.
@indiancoder6252
@indiancoder6252 Жыл бұрын
Nice Course All used Commands in GIT :- To Initialised a git repository -> git init To add your name -> git config --global user.name "Enter your desired name" To add your email -> git config --global user.email "Enter your email address" To See our Previous Commit -> git log To see our Name , email -> git config --list To Add all files to staging area -> git add --a To Commit All the changes -> git commit -m "Enter text to be shown here" To Delete a git repository -> rm -rf .git ("Proper Spacing should be there") To Make a file using command -> touch filename.extension To see previously run command -> directly write "history" ******************(To ignore some git file lets say .log file we can do it simply by creating a .gitignore file and just put a name into it but if you mistakenly generated a lot of log file then just simply write *.log in the .gitignore file.)***************************** To see what changes are made -> git diff To track the changes that are staged -> git diff --staged but not committed To skip the staging area we can use -> git commit -a -m "Any Message you want to print" To Remove any file -> git rm file.txt To rename any file -> git mv oldfilename newfilename To Untrack a file -> git rm --cached filename (if we put a file under .gitignore which is previously on tracking then it will also get tracked beacuse it was previouslly staged so to unstage this we have to write a command "git rm --cached filename.extension") To see in detail what Changes are -> git log -p occur To see in detail what Changes are -> git log -p / git log -p -2 occur / and if in last 2/3 commit To see changes in Summary/Short -> git log --stat Form To see changes in online we use -> git log --pretty=oneline To Filter commit's on time -> git log --since=2.days/months/years/weeks To change the format of commit -> git log --pretty=format:"%h -- %an --%ae" (WebR->git-scm.com/docs/git-log) To amend a git commit -> git commit --amend (It will open a vim editor to escape it just press esc and write :wq to exit) To unstage a file -> git restore --staged filename.extension / git restore filename.extension To restore the data on previous commit of a particular file -> git checkout -- filename.extension To match current position with previous commit for all file -> git checkout -f video number 13 To push any changes to git we first need to add a remote path -> git remote add origin github.com/IC-XOrbit-07/sampletest.git (can get it from github under your repo sec.) To check added path -> git remote -v To add a new branch -> git checkout -b newBranchName To return back to master branch -> git checkout master To check all available branch -> git branch To merge all the branches -> git merge subbranchname To see all branches and thier last commit with hash -> git branch -v To see all the merged branches -> git branch --merged To see not merged branches -> git branch --no -merged To delete a git branch -> git branch -d "branch name to be deleted" To remove a added path -> git remote rm origin/name if we want to see our various branches then we have to push it also by the command "git push origin branchNameHere"
@SushilKumbhar-x7f
@SushilKumbhar-x7f Жыл бұрын
Thanks for making a series of Git, It helps me a lot. Cleared concept of Git merge, conflicts, handling remote repo, production workflow etc. Before watching this series I'm totally blind and unconfident about the git command and now I know the reason and purpose behind every git command. Thanks once again.
@manojonutube1
@manojonutube1 3 жыл бұрын
After Completed this Playlist, I must say the author is really worked hard for others to teach the concept, If any one wants to learn about git and github, It's really helpful...Thanks you very much for this beautiful Presentation and Explanation.
@darshanpagar1894
@darshanpagar1894 2 жыл бұрын
Successfully completed this series. Learn lots of concepts from this tutorials. Waiting from Season 2 of this series which will include pull requests, working with private repository, open source contribution to some others project.
@rishavsaha5254
@rishavsaha5254 Жыл бұрын
Just completed this series on Git. Feeling much more confident using the git commands from now on. This was by far the easiest explanation I came across.
@ArunKumar-gp2vq
@ArunKumar-gp2vq 2 жыл бұрын
Don't have words to thank you for all you have done for us through this and other courses. Stay blessed always!
@arunjohny
@arunjohny Жыл бұрын
Thank you Harry bhai! Your 'Complete Git Tutorials For Beginners In Hindi' playlist was incredibly helpful and I learned so much. Your clear explanations and practical examples made the learning process seamless and enjoyable. Thank you for sharing your knowledge and making coding accessible to all.
@nadeking1530
@nadeking1530 3 жыл бұрын
I have completed the playlist , it was soooooooo good , i would recommend this playlist to anyone to whosoever want to learn git and github easily , tysm harry for being such an awesome teacher , i never write comments but today i did coz it was made soo awesome, it is also 2021 ready , the only change i noticed that now master branch is renamed to main . Else everything is good . TYSM once again harry for you hardwork
@pranavdani3810
@pranavdani3810 4 жыл бұрын
Finished Git from this series and I feel that I have adequate knowledge about Git, Thank you so much for this
@abhaypatil5423
@abhaypatil5423 2 ай бұрын
these course was amazing experience . The simplicity of the concept was excelent for quicker understanding , these are my impression after completing the full course and , I am very much happy about the concepts . I have learned in the entire course.
@nileshaher09
@nileshaher09 3 жыл бұрын
I have completed the git playlist, it was a really awesome experience and learned git from scratch. I hope you will continue bringing new things to us. Thanks a lot Harry...
@princirani5979
@princirani5979 3 жыл бұрын
Just completed the entire playlist . I really enjoyed your way of teaching and you made everything very easy to learn the complete git in one go. Hats off to your efforts 🙏.
@ahsanalikhan7731
@ahsanalikhan7731 3 жыл бұрын
54)To push branch to remote repo $git push origin 55)To delete branch in remote repository $git push -d origin
@sauravbhardwaj27
@sauravbhardwaj27 3 жыл бұрын
Never assumed learning Git can such be easy. Watched all the videos of playlist feeling confident in using Git. Thanks Harry bhai keep teaching like this......
@amirali1449
@amirali1449 2 жыл бұрын
Thank you Harry bhai for making this playlist. Your teaching style is out of the world.
@JitendraKumar-ij5be
@JitendraKumar-ij5be 3 жыл бұрын
Hi Harry, I have seen your all videos, I really like your teaching style. and your all videos are helpful for me. Just I want to suggest a few important topics if you add them to your playlist then it can be a great playlist, following are topics: 1) How can we remove a specific commit? 2) How can we revert any push changes? 2) How can we go back to a specific commit? 3) If my task is pending and I want to go to another branch without committing then how I can do that? Thanks. :)
@ritikraj2629
@ritikraj2629 2 жыл бұрын
Completed all the video of this playlist in one go with practice.... and literally it's help me a lot to gain all the concept on git and github.... Thanks harry bro lots of love... completed on 31-10-2021😍😍
@namanbudhiraja6756
@namanbudhiraja6756 4 жыл бұрын
Completed the playlist and now i am confident enough to use git and github Thanks For this playlist
@theindianmind1154
@theindianmind1154 3 жыл бұрын
Thank you for sharing your precious knowledge with us "for free", This is my first comment in this playlist after watching all the videos in this playlist in the given chronological order I must say you have done a great job. THANK YOU once again for enlightening us with your precious gems of knowledge.
@faheemsiddiqui2680
@faheemsiddiqui2680 3 жыл бұрын
I finished watching all of your git tutorial in 1 go like some interesting web series. Thanx brother for all you're efforts, for making us better developer.
@mihirvora7456
@mihirvora7456 3 жыл бұрын
Completed the whole playlist in 1 day 😊. Thank you Harry Bhai for this detailed playlist.
@rajatsahu8812
@rajatsahu8812 Жыл бұрын
"Thank you, Harry bhai, for the fantastic Git tutorial! I just completed the git tutorial playlist, and I must say it was incredibly helpful. The explanations were clear, and I now feel more confident using Git for version control. I particularly liked the practical examples, which made them easy to follow. The tutorial helped me grasp key Git concepts like repositories, commits, and branching. I also learned how to push changes to remote repositories and collaborate with others effectively. Overall, I highly recommend this tutorial to anyone looking to learn Git. Thanks again for sharing this valuable knowledge with the community!"
@simrannadaf6094
@simrannadaf6094 2 жыл бұрын
i completed git playlist. it was amazing!! Thanks harry bhai😇 best teacher ever🙏🙏
@ishitaagrawal2779
@ishitaagrawal2779 3 жыл бұрын
Sir first of all thanks a lot for all your efforts so far!!❤️ I request you to please complete this playlist. .! As we solely depend upon you 🙏
@samarjeetkumar5350
@samarjeetkumar5350 4 жыл бұрын
Thank yu harry for a wonderful playlist. I have gone through all the videos of your playlist and it makes me very understandable. And now i am using git very easily. Society should upvote guys like yu as yu are giving us free access to all the courses. Thank you harry for all that.
@surajthete3636
@surajthete3636 Жыл бұрын
Thank you soo much Harry sir … git & git hub concepts are now cleared … Love the way you simplify and teach concepts..❤❤❤❤
@abhinavsharma7939
@abhinavsharma7939 4 жыл бұрын
You are one of the best tutor on youtube. Loved this playlist and learned a lot from it.
@tushardeokate9476
@tushardeokate9476 2 жыл бұрын
Puri playlist dekh li harry bhai Pehele aapki python in one video 15hr and c in one video 15hr dekh kar Job lag gaya aur abb job me use hone wali technology bhi aap he sikha raheho. Aur 1k bath 1k video banado git par on topic going back to 2n last commit. 💯💯💯💯💯💯💯💯💯💯💯💯💯💯💯💯💯💯💯💯💯💯💯
@karthikavijayannv5319
@karthikavijayannv5319 2 жыл бұрын
Completed the Playlist. Learned a lot about git. Highly recommended for beginners .Thankyou Sir for this amazing lectures. Thankyou!!!!
@abhirupnandi442
@abhirupnandi442 4 жыл бұрын
Really enjoyed the whole playlist alot. Learnt lots of things from you. Keep up the good work 👍
@productive5
@productive5 3 жыл бұрын
Finished this playlist in 4 days and learn a lot from it thanks harry bhai fir this playlist.......❤❤
@dreaming2009
@dreaming2009 2 жыл бұрын
Thanks, Harry for always coming as a savior, especially for a non-IT student like us. Earlier enjoyed your tutorial on Python and now this :))
@manuvarghese1952
@manuvarghese1952 3 жыл бұрын
It was a great playlist , I viewed all the lecture and it was really helpful and well put together. Pehle Git sikhne ke liye Udacity ka course chalu kiya tha par vaha kuch samajh hi nahi raha tha, fir aapka playlist mila, pura point of view hi badal diya aapne, har cheez itne easily aur example ke saath explain ki. Thank you so much bhai.
@brahmadev7419
@brahmadev7419 4 жыл бұрын
Successfully completed the playlist and have a great understanding on GIT now..!! learnt completely from you.. Thanks a ton for sharing the knowledge....
@bernardphlaxisk6454
@bernardphlaxisk6454 3 жыл бұрын
This was so helpful recently I got an internship and I didn't know how to create a new branch and make changes, but this was very helpful. Thank you
@nitishnagar1
@nitishnagar1 3 жыл бұрын
Just completed the whole playlist and i'm sooo happy that i was able to learn it so quickly from you Harry bhai!!!❤❤
@bolly-blow4746
@bolly-blow4746 3 жыл бұрын
I'm a non IT guy,bcoz of you now I'm a ReactJs developer.Thank you Harry bhai...
@CodeWithCJ
@CodeWithCJ Жыл бұрын
Thanks Harry Bhai for this amazing playlist. I have literally binged watched this amazing series of GIT and GITHUB. Very well explained in a simplified manner. Cannot Thankyou more. Your Tutorials have been a life saver. Very calmly I watched each video and practiced live everything. 10 min video would sometimes take 30 -40 min to finish as I made my own notes and did practiced everything. Thouh this playist was made 3 years back but very effectively communicated the concepts in Lehman terms Once again Thanks You very MUCH.
@mxtrojan28
@mxtrojan28 Жыл бұрын
I don't have words to show my gratitude toward you for this awesome course. THANKS YOU, HARRY BHAI.
@deendaily8750
@deendaily8750 3 жыл бұрын
it was just an awesome journey with you and still continuing with you brother. I learnt a lot from this playlist and gather complete knowledge of git . Thanks a lot, brother for your contribution.
@akashkshirsagar7675
@akashkshirsagar7675 3 жыл бұрын
I learnt lots from this playlist...and I loved it....very very much simplified ... Thank you
@aziz_mallick007
@aziz_mallick007 Жыл бұрын
Harry Bhai .. You Rock !! Pura Playlist dekha hai A to Z jesa bola wesa kiya hai .. Thank you sikhane k liye ..
@587_mehulrana2
@587_mehulrana2 3 жыл бұрын
thank you soo much for providing this kind of knowledge on the internet for free of cost ... hats of mate! 🙌
@yashchoudhari36
@yashchoudhari36 4 жыл бұрын
Harry bhaiya I watched the whole playlist of git and now I become huge fan of yours, you are one of the best Instructor in the world after this I am going to watch Android studio playlist. Love your videos bhaiya❤️❤️ this will definitely benifitial for me in future 😄☺️☺️
@Youtube-Movie-Master
@Youtube-Movie-Master Жыл бұрын
I am checking this series after 3+ years and git is almost have a lot of upgrades and changes then also this tutorial is completely useful and understanding
@venkteshdave
@venkteshdave 4 жыл бұрын
Harry You are Awesome person...Really thankful to you...Great Videos and way how you explain...Appreciated...I learnt Git from Institute and gone through your playlist...very huge difference of learning from you...Great work....
@theschoolkid6553
@theschoolkid6553 3 жыл бұрын
Today I'm completing this tutorial.. it took 5 days to complete .. How slow learner I'm. Thankx Harry Bhai.
@vishalsuryawanshi1493
@vishalsuryawanshi1493 2 жыл бұрын
Really great learner on the youtube...... Lot of information gained by harry sir. Thank you so much
@rockeyrascals6795
@rockeyrascals6795 3 жыл бұрын
I am impressed by your way of teaching. and thanks for making git playlist. our ek sentence" maja aa gya sir kya sikhaya he " god bless you sir and one again thank you so much for teaching
@standardscripts5876
@standardscripts5876 2 ай бұрын
Simply put -- To push branch to remote repo $git push origin To delete branch in remote repository $git push -d origin
@aditidesale6738
@aditidesale6738 4 жыл бұрын
All the videos from 1 to19 were so helpful.Thank for this wonderful short course !! Appreciate your efforts !! But here is a small and important suggestion : Could you please make video on the directory structure of .git folder and uses of each directory with example ?
@AbhishekSingh-tz3uv
@AbhishekSingh-tz3uv 3 жыл бұрын
I would like to thank you for making such a wonderful playlist. Everything was very well explained. Watched the whole list in just one day. Thank you for your efforts my friend.
@Ash-ue8sk
@Ash-ue8sk 3 жыл бұрын
Loved the tutorial Learned git and now feeling more confident ☺️
@LetsCode2109
@LetsCode2109 9 ай бұрын
Just completed the playlist....Awesome teaching techniques.....Thank you sir for your efforts😊
@karamjeetsinghpadam507
@karamjeetsinghpadam507 4 жыл бұрын
hanks you harry bhai... went thru the whole series... with your grace learned git in 2 days. … shared with my friends not only this series but others as well....thanks much once again.
@ashishrajput2571
@ashishrajput2571 Жыл бұрын
I KNOW SO MUCH ABOUT GIT AFTER COMPLETE THIS PLAYLIST THANK YOU SO MUCH HARRY BHAI YOU ARE LIKE MY BIG BROTHER WHO ALWAYS SUPPORTS ME IN CODING
@sameerind
@sameerind 4 жыл бұрын
enjoyed the entire series on Github. Keep up the good work.
@iamcalledusman
@iamcalledusman 3 жыл бұрын
nice explanation! You are one of the best Instructors. I really enjoyed all lectures. Love and respect from Pakistan!
@prakharsrivastav4550
@prakharsrivastav4550 11 ай бұрын
Thanks for this series harry. This helped me in having a great understanding of the fundamentals of git. I think we need to build over it, but this was a foundation which cannot be shaken.
@seemavishnupurikar2515
@seemavishnupurikar2515 4 жыл бұрын
Thank you harry for a playlist. I have gone through all the videos of your playlist And now i am using git very easily.
@FaithFulHUB
@FaithFulHUB 26 күн бұрын
Good boss! I like your explaining way. You are such a grate teacher. The thing is to consider that I'm blind and having full advantage of your playlist. I subscribed you when I was just started watching this playlist. I will finally decided to watch a new playlist on another topic. Thanks!
@deepanshujain6986
@deepanshujain6986 11 ай бұрын
I enjoyed this course. You taught every concept very well and always kept our interests high. But I think you didn't talk about pulling a commit from local and remote git repos. Please make a video on that too and also on other topics that might be remaining and complete this playlist. Thanks a lot bhaiya!
@abbasrizvi7215
@abbasrizvi7215 2 жыл бұрын
Harry bhai aapne ache tarike se samjhaya jo koi bhi samajh sakta hai
@himanshu_rohil
@himanshu_rohil 3 жыл бұрын
14:53 Yes, we can delete the branch 'bugfix'. Thank you so much harry Bhai, enjoyed the whole playlist! :)
@sumaiyasafdar6845
@sumaiyasafdar6845 4 жыл бұрын
Sir please complete the git playlist. It is crucial for people who are solely dependent on you!!!!
@GautamKumar-hi2qh
@GautamKumar-hi2qh Жыл бұрын
Just completed the Git Complete series. Thank You so much Harry Bhai...
@chandrabhushansingh4762
@chandrabhushansingh4762 2 жыл бұрын
just completed this series now i am familiar with git. thanks soo much bhaiya😍
@sarkaricoding7736
@sarkaricoding7736 3 жыл бұрын
Bhaiya you are excellent teacher the way you explain the topic and take the most difficult example to explain and explain it well then rest become fun for the guy who learn it
@farhanaazkhan8413
@farhanaazkhan8413 2 жыл бұрын
Thank you for sharing your valuable knowledge with us and creatin' this course easier for us, May Allah Bless you with happiness. Aameen.
@muneebzubair5069
@muneebzubair5069 4 жыл бұрын
question: update a repo version from remote repo. I have watched all videos of your git course. and I also made notes with summary and detail.
@itz_rohan31
@itz_rohan31 4 жыл бұрын
Harry bhai.. app ki life journey ke bare mein ek video chahiye! ~/suruaat/study_details/youtube_journey/etc.... I just love your teaching style. plz vhai make one video on your life_journey!
@abcxyz3058
@abcxyz3058 2 жыл бұрын
I just completed this playlist and learned so many things..... Tnx harry bhai for all this
@mahakalgaming5909
@mahakalgaming5909 Жыл бұрын
Thanks Harry Bhai aaj mene git ki puri playlist dekh daali great content it is very helpful to me again big thanks
@salmanghouri8412
@salmanghouri8412 3 жыл бұрын
Thank you sir. I have completed this course & gain lot of exprience to do many things whose I never do before on git &github ❤ Sir 1 issue erase kindly make a tutorial on private remote repositories
@nareshvangari2021
@nareshvangari2021 3 жыл бұрын
I'm done with Playlist. I'm Non-IT guy but I understood git very well! Thank you Harry Bhai❤ Edit : unbelievable 😃😍 got heart from HarryBhai within a minute 🤩
@pratibhapatel1779
@pratibhapatel1779 Жыл бұрын
HI Sir ! Your way of teaching is outstanding. Thank you so much for such an effort.
@ddevashish
@ddevashish 27 күн бұрын
I watched the complete series. I learned a lot. Thanks you for all these. Can you please add videos on stash and shelve commands as well and explain the functionality?
@hameedferoz8804
@hameedferoz8804 Жыл бұрын
Watched all videos. Your tutorials are very easy to understand. Thank you very much.
@balboa7
@balboa7 2 жыл бұрын
For a beginner like me, your way of explaining the Git and its importance is commendable. I loved your course. One suggestion, if possible, can you also please share a cheat sheet with all the commands written on it so that it would be easy to revise? Thank You. _Shivam
@SaurabhVerma-gr2si
@SaurabhVerma-gr2si 2 жыл бұрын
You teach in mindblowing way
@harshvardhanpardeshi3584
@harshvardhanpardeshi3584 Жыл бұрын
great playlist. I folowed this from the beginning till end and found it very helpful. Thank you very much Harry bhai :)
@mohammedshahbaazshareef5549
@mohammedshahbaazshareef5549 4 жыл бұрын
Amazing course , feeling confident in git now .Thank you for all the efforts
@abhinavsrivastava4872
@abhinavsrivastava4872 21 күн бұрын
Truly !!! Kudos to the wonderful teachings and lots of inputs !!!Way to Go..
@techgourab
@techgourab 2 жыл бұрын
*Finally completed the series, thanks harry bhai*
@ShivamKumar-ie1je
@ShivamKumar-ie1je 2 жыл бұрын
thank you harry bhai... I completed the tutorial series. This tutorial helps me a lot to understand git & GitHub.
@009shaz
@009shaz 6 ай бұрын
Best series on git ever, kudos and many thanks to Harry for this :)
@mrankushtechnical
@mrankushtechnical 3 жыл бұрын
Done.
@ayushrai3389
@ayushrai3389 3 жыл бұрын
i have just completed this platylist || thank you harry bhai!! || respect * 100
@aloksharma5468
@aloksharma5468 Жыл бұрын
Completed this series. Thank you Harry bhai for this wonderful content !
@apexpredator7746
@apexpredator7746 2 жыл бұрын
completed this playlist. Very nicely explained with simple language and examples.
@SaurabhAditya1
@SaurabhAditya1 3 жыл бұрын
Thanks Harry for this playlist, Finally I understand concepts of Git and thanks for telling about it's history :)
@omkarkesarkar9252
@omkarkesarkar9252 7 ай бұрын
Thanks Harry bhai for this series. But few more things are needed for basics like pull, forking, and how to go to specific commits, etc. Please take some time and help to add these topics as well.. Thanks again man !!
@aanupamdatta1502
@aanupamdatta1502 4 жыл бұрын
Harry vai playlist aachi hein. Bohot aache tarike se samajh aaya. Par as a "PU branch :) " ek video "Pull Request" k upar to banti hein. Kyu ki maximum time hamare pass privilege nehi hota k hum merge kar de. To taab hum a pull request karna parta hein manlo aagar Open Source Project mein contribution kar na chahu tab. Rest bohot aachi playlist hein. Thank you :)
@kartikgupta3028
@kartikgupta3028 4 жыл бұрын
Thanks for the information provided. But i think that the below points are missing: Private repository Pull command Host your own git repo on server How to rollback to previous commits, etc How to collaborate actually on git with practicala?
@savindersingh4523
@savindersingh4523 Жыл бұрын
Just completed the course. Awesome course Harry Bhai !
@hk-ks6rb
@hk-ks6rb Жыл бұрын
For CLARITY the Master branch in this course is the Main branch at this time(october 2022) it was change from Main to Master in 2021
@prajwalwadhai8906
@prajwalwadhai8906 2 жыл бұрын
yeeeee I complete the cource from starting to end yeee maja agaya harry bhai
Когда отец одевает ребёнка @JaySharon
00:16
История одного вокалиста
Рет қаралды 11 МЛН
Офицер, я всё объясню
01:00
История одного вокалиста
Рет қаралды 6 МЛН
pumpkins #shorts
00:39
Mr DegrEE
Рет қаралды 87 МЛН
Стойкость Фёдора поразила всех!
00:58
МИНУС БАЛЛ
Рет қаралды 6 МЛН
Когда отец одевает ребёнка @JaySharon
00:16
История одного вокалиста
Рет қаралды 11 МЛН