You are amazing sir. I have followed all of your postman and git videos. They are enough to work anyone in real time or to crack the interview. God should bless you sir. Thank you.
A big thank you to sir. Person who don't have knowledge about these topics can get good knowledge of these topics after watching your videos. This is the best video i have ever seen, you are amazing teacher. God bless you.....
I am your big fan sir. The way and systematic order to explain anything should be learn from you. Very few people are in world like you. Thank you so much for making these videos for us. Sandeep Singh from Jaunpur, Uttar Pradesh.
Using git revert, we can undo a specific commit, but as part of undoing the commit, it creates a new commit and tacks it to the commit history. Using git reset, this is not possible, as it discards all the commits next to the commit we specify, and make them the orphan commits(removed). reset is not safe as it impacts commit history. Reset is ideal to used for private branches of local repo. revert is safe as it doesn't have ability to rewrite the commit history. Revert is ideal for public branches like master.
Hi Sir, This is the best playlist for GIT I found on TH-cam. While going through this video, I have one query: How to do the git reset for first commit, As this command is only resetting above to the commit-id.
Sir plz apprise that how we use this in real scenario using say GUI. Like if I have to setup git in my organization from scratch plz guide step by step .thanks
Hi sir, I have a question? If i have 3 files and i staged all three files in single shot by using git add . and committed as well. now i have only one commit. how to discard the changes for the one commit. i tried with many commands but i couldn't. Please reply the command to discard the single commit changes.
I've tried your steps, but it seems its not working, as the concept says reset command will reset all commits above it. But since we've only one commit which is HEAD even if we try to reset it, that commit is retained in LR.
Hi pavan .. i have a question for you w.r.t selenium python .. In java , we have maven build automation tool right .. Likewise , for python selenium which build automation tool should we use ??? i will be waiting for your answer pavan .....Thanks in advance ...
I think we dont need any build automation tool for Python.In java to download jars automatically we are using maven,but in python all libraries we are doing pip install.So no need.
Hello sir! I am shirisha. I lost all the files from the working directory and notepads++ even those files not part of staging and commits? How to backup all those files again back
a) made two commits in the master branch b)branched out and made two commits again c)Switched to the master branch and made two commits again d)then did rebase from the feature -- it prompted me to specify the branch e) on rebasing from the feature branch specifying the master branch resulted in this message that is i ran the following command from the feature branch: (git rebase master) error: could not apply 4ef18f3... Third line file.txt commited in CF1 Resolve all conflicts manually, mark them as resolved with "git add/rm ", then run "git rebase --continue". You can instead skip this commit: run "git rebase --skip". To abort and get back to the state before "git rebase", run "git rebase --abort". Could not apply 4ef18f3... Third line file.txt commited in CF1 Auto-merging file.txt CONFLICT (content): Merge conflict in file.txt
These git videos are really good. I have seen hundreds of videos on git but this series is one of the best.
Glad you like them!
@@sdetpavan +1
Literally the best series on git
Thanks
You are amazing sir. I have followed all of your postman and git videos. They are enough to work anyone in real time or to crack the interview. God should bless you sir. Thank you.
most welcome
You are one of the best teacher.. Thank you so much... God bless you sir..
Welcome
A big thank you to sir. Person who don't have knowledge about these topics can get good knowledge of these topics after watching your videos. This is the best video i have ever seen, you are amazing teacher. God bless you.....
I am your big fan sir. The way and systematic order to explain anything should be learn from you. Very few people are in world like you. Thank you so much for making these videos for us. Sandeep Singh from Jaunpur, Uttar Pradesh.
Welcome
Wonderful teacher you are... Very clear in explanation....
More power to you.
Thanks
so important concept and taught in very simple language...........thank u sir...........👌👌👌👌👌👍👍👍👍👍🙏🙏🙏🙏🙏🙏
Keep watching
Very good explanation. Thank you sir
You're most welcome!
Sir, I have seen number of videos but this videos are so good .......
Thanks
vedio is really good ,i gone through some many vedios but this is one of the best i got in youtube
My Pleasure
Great syllabus... hopefully some other videos about gitllab . greetings from Sweden. respectfully yours
Thanks
best git lectures ever
Wow. Thanks for your service. Great explanation.
Welcome
Awesome
Thanks
thank you so much for videos sir, your explanation so so good :)
Welcome
You are an amazing teacher!
Outstanding explanation!! It went through the brain.
Thanks
super
Thanks
Wow... Well explained!!
Thanks
Super sir...very understandable 👍
You’re welcome
excelent videos to know git commands
Thanks for the videos. How could one delete the commit raised locally as in the case of reset to remove a commit multiple commits are required?
Thanks, super helpful tutorial
Thankyou Sir !!! Very easy to understand..
You’re welcome
Amazing
Thanks
All the best Zensarians😂😂
Using git revert, we can undo a specific commit, but as part of undoing the commit, it creates a new commit and tacks it to the commit history.
Using git reset, this is not possible, as it discards all the commits next to the commit we specify, and make them the orphan commits(removed).
reset is not safe as it impacts commit history. Reset is ideal to used for private branches of local repo.
revert is safe as it doesn't have ability to rewrite the commit history. Revert is ideal for public branches like master.
Sir what is the difference between remove(rm) command from stagging and the reset command?
Hi Sir, This is the best playlist for GIT I found on TH-cam. While going through this video, I have one query:
How to do the git reset for first commit, As this command is only resetting above to the commit-id.
I tried using --soft mode, with the 1st commit which is HEAD for me at this point, but that commit isn't reset. Rather it was retained Local Repo
Thank you so much
You're most welcome
Sir plz apprise that how we use this in real scenario using say GUI. Like if I have to setup git in my organization from scratch plz guide step by step .thanks
Thanks 🙏
Welcome
Hi sir, I have a question?
If i have 3 files and i staged all three files in single shot by using git add . and committed as well. now i have only one commit. how to discard the changes for the one commit. i tried with many commands but i couldn't. Please reply the command to discard the single commit changes.
I've tried your steps, but it seems its not working, as the concept says reset command will reset all commits above it. But since we've only one commit which is HEAD even if we try to reset it, that commit is retained in LR.
whats the difference between git rm cached and git reset.....they both remove files from staging area right?
What If we need to reset all the commits in the Local Repository which commit ID we need to give with git reset command?
Hi pavan .. i have a question for you w.r.t selenium python .. In java , we have maven build automation tool right .. Likewise , for python selenium which build automation tool should we use ??? i will be waiting for your answer pavan .....Thanks in advance ...
I think we dont need any build automation tool for Python.In java to download jars automatically we are using maven,but in python all libraries we are doing pip install.So no need.
Sir please make a cheatsheet for all your playlist it will be very helpful for us thanks!
If I want to delete commit 1 thn what can I do
Hello sir! I am shirisha.
I lost all the files from the working directory and notepads++ even those files not part of staging and commits? How to backup all those files again back
a) made two commits in the master branch
b)branched out and made two commits again
c)Switched to the master branch and made two commits again
d)then did rebase from the feature -- it prompted me to specify the branch
e) on rebasing from the feature branch specifying the master branch resulted in this message that is i
ran the following command from the feature branch:
(git rebase master)
error: could not apply 4ef18f3... Third line file.txt commited in CF1
Resolve all conflicts manually, mark them as resolved with
"git add/rm ", then run "git rebase --continue".
You can instead skip this commit: run "git rebase --skip".
To abort and get back to the state before "git rebase", run "git rebase --abort".
Could not apply 4ef18f3... Third line file.txt commited in CF1
Auto-merging file.txt
CONFLICT (content): Merge conflict in file.txt
how to discard all commits from local repository?
Sir, In this video sound is very low not able to hear you properly at all.
Sir, How to reset all commits at a time
Sir !! Please make postman series
Already done. Please check playlists.
after hard can i get my file back
--hard mode will reset from all three stages & hence using --soft or --mixed is safer option
*sir can i get notes for this ***
your videos are spoon feeding videos, who don't have understanding skills also can learn easily.