Literally this man cares so much about his audience He has talked a hundreds time about vs code installation Which he could easily told to see in his other playlist🙏🏻
Basic Commands: git status to see what's going on git init to make a git repository rm -rf .git to delete a git repository git add . to add all files in staging area git add --a to add all files in staging area git commit -m "Something" to do a commit git commit -a -m "Something" to do a direct commit without staging Modifying With Previous Commit Message: git commit ammend to modify previos commit message Removing File Commands: git rm -rf to remove a specific file git rm -rf . to remove all files git ignore basics: for example we're ignoring .log file error.log to ignore a specific file *.log to ignore all .log file dir/ to ignore a directory /dir/ to ignore a directory only in the parent folder if a file isn't ignoring by git ignore run this command git rm -cached Difference Checking Commands: git diff to check before and after difference in a specific file git diff . to check before and after difference in all files git diff --staged to check before and after difference in staged files Name Changing Commands: git mv to rename a file History Commands: git log to see a log in basic way git log -p to see a log in detail with before and after difference git log --pretty=short git log --pretty=full to see log in more detail with author name and commiter name git log --pretty=format to find formats go on this website "git-scm.com/docs/git-log" Rolling Back Commands: git checkout -- to replace a specific file with last commit git check -f to replace whole folder with last commit Remote Commands: git remote add origin "url" to add your github repository git remote -v to see push and fetch link of your repository SSH Key Generating: ssh-keygen -t rsa -b 4096 -C "your_email@example.com" or "your pc name" eval "$(ssh-agent -s)" Run This Command To Start SSH Agent ssh-add ~/.ssh/id_rsa tail ~/.ssh/id_rsa.pub Push Commands" git push -u origin master to push a your repository on github Alias Commands: git config --global alias.(Your Command) (Original Command) to make your custom commands git config --global alias.st status example: Discard Changes or Roll Back To Last Commit Commands: git restore to discard all changes in a specific file git restore . to discard all changes in the whole folder Branching Commands: git checkout -b (your branch name) to make a new branch git checkout (your branch name) to switch your branches git branch to show all branches in the repository
very good demonstration especially liked it since its explained in our common language. Strong hands to you Harry. your videos is a blessing for many students and professionals alike.
bahut aabhar isko hindi mein banane ke liye..meine kai sourses dekhe but is playlist jaisa mujhe koi nai sikha paya. git ko bahot saral bana diya aapne harry
Harry bhaia merge karne ke baad directly merge ho gaya kuchh nahi poochha. Vs code ko bhi pata nahi chala ki kuchh change hua hai. Phir baad me pata chala ki jabtak dono me hi changes na kiya jaye tabtak koi conflict nahi aata. Phir jake video aage karke dekha to aapne bhi wahi bataya tha. 😁😁
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 practicals?
Comment for Just increasing comments on this video. If someone asks me who teaches you GIT and where you learn GIT then I will definitely say #CodeWithHarry 🤩 Thank You so much harry Bhai. 🤟
HI harry bhai.. yes this VsCode is good for managing and correcting conflicts.. but what about the eclipse or intellij idea IDEs? how we select incoming changes or current changes?
ye problem a rhi fatal: Unable to create 'E:/End to end projects/End-to-End-House-Price-prediction-ML-project/.git/index.lock': File exists. Another git process seems to be running in this repository, e.g. an editor opened by 'git commit'. Please make sure all processes are terminated then try again. If it still fails, a git process may have crashed in this repository earlier: remove the file manually to continue.
In Django project. what is right place for placing templates 1. inside apps 2. in the root folder if I place templates folder inside apps and for each template we have some static file that may be common for other apps. Therefore we may need to put a single static file like a bootstrap file in multiple places. Which also takes spaces. So guide me on which one is right. inside root if I made the template and make folder with apps name. Is it not true? We can reuse our base.html for different apps. but if i put template inside apps. We need to create separate base.html for all apps. I am little bit confused. so, please guide me.
Literally this man cares so much about his audience
He has talked a hundreds time about vs code installation
Which he could easily told to see in his other playlist🙏🏻
Basic Commands:
git status to see what's going on
git init to make a git repository
rm -rf .git to delete a git repository
git add . to add all files in staging area
git add --a to add all files in staging area
git commit -m "Something" to do a commit
git commit -a -m "Something" to do a direct commit without staging
Modifying With Previous Commit Message:
git commit ammend to modify previos commit message
Removing File Commands:
git rm -rf to remove a specific file
git rm -rf . to remove all files
git ignore basics:
for example we're ignoring .log file
error.log to ignore a specific file
*.log to ignore all .log file
dir/ to ignore a directory
/dir/ to ignore a directory only in the parent folder
if a file isn't ignoring by git ignore run this command
git rm -cached
Difference Checking Commands:
git diff to check before and after difference in a specific file
git diff . to check before and after difference in all files
git diff --staged to check before and after difference in staged files
Name Changing Commands:
git mv to rename a file
History Commands:
git log to see a log in basic way
git log -p to see a log in detail with before and after difference
git log --pretty=short
git log --pretty=full to see log in more detail with author name and commiter name
git log --pretty=format to find formats go on this website "git-scm.com/docs/git-log"
Rolling Back Commands:
git checkout -- to replace a specific file with last commit
git check -f to replace whole folder with last commit
Remote Commands:
git remote add origin "url" to add your github repository
git remote -v to see push and fetch link of your repository
SSH Key Generating:
ssh-keygen -t rsa -b 4096 -C "your_email@example.com" or "your pc name"
eval "$(ssh-agent -s)" Run This Command To Start SSH Agent
ssh-add ~/.ssh/id_rsa
tail ~/.ssh/id_rsa.pub
Push Commands"
git push -u origin master to push a your repository on github
Alias Commands:
git config --global alias.(Your Command) (Original Command) to make your custom commands
git config --global alias.st status example:
Discard Changes or Roll Back To Last Commit Commands:
git restore to discard all changes in a specific file
git restore . to discard all changes in the whole folder
Branching Commands:
git checkout -b (your branch name) to make a new branch
git checkout (your branch name) to switch your branches
git branch to show all branches in the repository
thanks bro
48)To merge branch , switch to parent branch:
$ git merge
**note : VS CODE gives option to select and resolve merge conflicts **
Thanks for the TL;DR 's
very good demonstration especially liked it since its explained in our common language.
Strong hands to you Harry.
your videos is a blessing for many students and professionals alike.
bahut aabhar isko hindi mein banane ke liye..meine kai sourses dekhe but is playlist jaisa mujhe koi nai sikha paya. git ko bahot saral bana diya aapne harry
Harry bhai is india's biggest youtuber in computer science engineering
Twinkle Twinkle Little star
Harry bhai is superstar..
love from Nepal bhai
Harry bhai I just wanna say you are amazing. cuz the way you care it's extraordinary
Harry bhaiya maja aa gya...when I realized the power of git...superb software by Linus torwald...hats off to him and thank you for easy explanation
Very well explained. The examples you used to explain the concepts were very good.
Btw I always deliberately waiting for your videos sir....thanks for the great learning support....
Nice explanation of simple merge.. hope to see complex merge and without VS in next lecture
Good job Harry Bhaiiiii❤️❤️❤️❤️❤️
Harry bhaia merge karne ke baad directly merge ho gaya kuchh nahi poochha. Vs code ko bhi pata nahi chala ki kuchh change hua hai. Phir baad me pata chala ki jabtak dono me hi changes na kiya jaye tabtak koi conflict nahi aata. Phir jake video aage karke dekha to aapne bhi wahi bataya tha. 😁😁
Thank you soooo much to learn us....with such a good examples and happily
You are a fantastic teacher. Thank you.
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 practicals?
Loved your tutorials very much...Love your teaching style..
Have this king👑🤝
Thxxxxxxx a lot harry bhai❤ love you 3000💗
Thank you so much sir for explaining branching and merging on git !
Harry Brother you are Awesome
Awesome harry bhai!!
you are amazing Sir!
Git merge after 14:30
Don't skip,
know about all branches and project
Very nice tutorial
Present sir ♥️😍♥️♥️😍♥️😍♥️😍
harry bhai thanks, plzz.. make some videos on terraform
Very helpful content
Comment for Just increasing comments on this video.
If someone asks me who teaches you GIT and where you learn GIT then I will definitely say #CodeWithHarry 🤩
Thank You so much harry Bhai. 🤟
Harry bhai Visual code studio k features aur functions per bhi aik ya do videos bana den.
Thank you mere bhai
Bhai node.js aur express.js pe bhi video banao.
amazing videos bro.
thanks please make a DevOps video
Thank You Sir
thank YOU bhai
haary bhai in his text files whenever he tries to explain any git command---"sdsdsdfsdf"
Could you please make sure the difference between rebase and merge ?....
Thank You so Much Sir
Sir, please make tutuoials on The Mean Stack
Best best unless word to say Harry
Sir, please git rebase ka video banaye.
Thanks.
Social Media website in Django in one Video kb aayegi Harry bhai ??????????
HI harry bhai.. yes this VsCode is good for managing and correcting conflicts.. but what about the eclipse or intellij idea IDEs? how we select incoming changes or current changes?
helpful video
vc code bhi khta hoga harry bhai kitni baar download kroge ab to maan jao 🙃
Bhai plz simple way me ai kaise bnae plz es pe vedio bno ek aur
❤️❤️
yar please app apni play list co side pa rak ka parhaya kro
ML tutorial pr video add kro harry bhai.. ..
harry bhai koi php me ik complete tutorials banado or ya koi book bata do
Nice
Sir your videos very helfful.sir I requested you make a videos mvvm architecture in android.
In javis its showing win32com. Cilent not defined and in problem its shows sr has no member
Harry bhaia git repository delete karne par wo git hub se bhi delete ho jayegi kya??
👌👌👍
Sir can you please tell where you are clicking at 6:27 because I am unable to open navbar home page
ye problem a rhi
fatal: Unable to create 'E:/End to end projects/End-to-End-House-Price-prediction-ML-project/.git/index.lock': File exists.
Another git process seems to be running in this repository, e.g.
an editor opened by 'git commit'. Please make sure all processes
are terminated then try again. If it still fails, a git process may have crashed in this repository earlier:
remove the file manually to continue.
❤
good morning harry bahii
mere isme merge conflict nhi aaya. "Merged made by recursive strategy"
aaya
Harry vai i have a doubt, is rollback means switching to the previous Branch from the current branch?
In Django project. what is right place for placing templates
1. inside apps
2. in the root folder
if I place templates folder inside apps and for each template we have some static file that may be common for other apps.
Therefore we may need to put a single static file like a bootstrap file in multiple places. Which also takes spaces. So guide me on which one is right.
inside root if I made the template and make folder with apps name. Is it not true?
We can reuse our base.html for different apps.
but if i put template inside apps. We need to create separate base.html for all apps.
I am little bit confused.
so, please guide me.
Bhaiya hame kon SA devloper Banna chahiye Abhi ke hisab se kon SA language Sukhna chahiye jiska trade chalega market me h
python java js ruby
agr hame branch ko push krna ho to kaise kar skte hai...?
bhai if i want to go to my intial commit then what command i need to write to go to my intial commit or any other commit
plz tell me
Gajodhar singh cool
bhai VS code mein open with live server karne pe live server start toh dikha rha hai but browser mein open nhi ho rha hai
Please help on this issue ...
! [remote rejected] master -> master (Working directory has unstaged changes)
error: failed to push some refs to......
How i can contribute to other person repo??
android par videos banaye
harry bhai Pyinstaller exe bna raha he lekin wo work nahi kr rahi plz help me
Social media in django ?????????? One video me ??????
#GajjuGang
#machinelearning 🙄 please
Harry bhai aap reply nhi kr rhe ho...
bhai ye wala video bekar ho gya kha git k topic se bootstrap, video editor
Why you are late
Bahi mera help kado plzzzzzzzzzzzzzzzz computer project ka liya
First
13:50 ye nai ki gandh faila rakhi ho.. lol
Gajodhar singh
best tutorial
Thank you so much sir😊