Installing Git + Initial Setup? | Git Tutorials #2

preview_player
Показать описание


Best Hindi Videos For Learning Programming:

►C Language Complete Course In Hindi -

►JavaScript Complete Course In Hindi -

►Django Complete Course In Hindi -

Follow Me On Social Media
Рекомендации по теме
Комментарии
Автор

I am from IIT, but your way of teaching is best rather than any professor.

VKBMath
Автор

I was very upset seeing other videos of Git. I thought I am not capable of learning. But seriously, your videos gave me a lot of confidence that I can learn too, though I'm a non technical student. Thanks a lot ☺️

fizasaifi
Автор

I am learning Git because I think it would be a great asset for me not just from job perspective, but also as a tool for my personal coding/web development etc. pursuit.

AlligatorAli
Автор

Key
7:00 Commands ls, pwd
9:20 GUI
10:00 command line vs gui
11:00 gut commands

sourabhdhyani
Автор

I am from non technical background and I was always afraid of learning coding and becoming software engineer but know I got a lot of confidence after watching your videos
Thanks a lot.

kanchanshekhawat
Автор

This 4 yrs. old video on GIT is much better than my ex google instructor teaching me git topic under an MS program for which I ended up paying 3.5 Lakhs. Hats off to u man for making content so much relatable for us.

mr_robot_tech
Автор

Thanks for Teaching this tutorials with such great efforts and so much love..Really you a masterpiece in this world...😍😍

Unknowndestinationtotravel
Автор

11:36 most informatic (press click in combination with shift ) love you hu gya....

ahmeedev
Автор

YOU JUST DO THE JOB LIKE "LINUS", VERY NICE VIDEOS AND EACH PROBLEM SHOULD BE HAPPEN FURTHER BUT ALREADY EXPLAIN BY HARRY SIR.
THANK YOU SO MUCH.

barikchandan
Автор

i thought my IQ wasn't upto the level to learn git
but here I am watching your video and understanding you simple tutorials
THANKS HARRY, I owe you for these wonderful tutorials
and Guys do checkout his Web Development Course..it's the best!!

hitanshisingh
Автор

I started learning git n github a month ago and I was puzzeld so much that I stoped Learning it, until Yesterday, when I found
"HAARRY BABBA"(with Respect !) teaching git n github in very easy n lusid way that I spent whole night watching his tutorial series and practicing each Command by Pausing the video again n again . Great job done "HARRY BABBA"...GOD BLESS YOU !!!

ManpreetSingh-cgnx
Автор

I watched your web development series and now git.you are awesome.

sanjaysinghshekhawat
Автор

These videos provide more clarity even to those using git for some time.

JaishreeramCoder
Автор

Harry bhai love you yaar😍😍😍. Aap na mere liye puri university ho. You r giving so valuable info. Great work👍

dikshasarode
Автор

I have tried all the commands with out any error. Thanks Harry...Nice way of teaching.

sumandey
Автор

Thanks bhaiya for such an amazing thing that I won't know but due to you I am learning this crazy technology 😊 love your videos❤️❤️

yashchoudhari
Автор

Save all these commands, you don't need to learn them all with time and practice you will memorize them easily.

Git Commands:
1)To set username :
git config --global user.name

2) To set Email :
git config --global user.email “[email address]”

3) To set an automatic command line coloring effect :
git config --global color.ui auto

4) To initialise a non-git repository as a git repository :
git init

5) To create or initiate a new git repository :
git init [repository name]

6) To obtain the entire repository or download existing source code form the URL provided :
git clone [url]

7) To add a file from the working tree to Staging area / current branch :
git add [file]

8) To add one or more files from the working tree to Staging are current branch :
git add *

9) To stage all files in the entire repository to the Staging area / current branch :
git add.

10) To delete the existing file from your working directory :
git rm [file]

11) To list all files that have to be commited :
git status

12) To see the changed contents that aren't staged :
get diff

13) To see the changed contents that are staged but not commited :
git diff --staged

14) To record or snapshot the changes permanently in the version history of the repository :
git commit -m “[commit message]”

15) To commit all the modified or created files to the repository :
git commit -a

16) to unstage a file without any change in the working directory :
git reset [file]

17) To undo all commits after teh specific commit mentioned and preserves the changes locally :
git reset [commit]

18) To discard all history and go bak to specific commit mentioned :
git reset --hard [commit]

19) To list the branches available in the repository :
git branch

20) To create a new branch :
git branch [branch name]

21) To delete the feature branch :
git branch -d [branch name]

22) To create a new branch and then checks out to the same :
git checkout -b [branch name]

23) To merge specified branches to the current branch :
git merge [branch name]

24) To list the version history for the current branch :
git log

25) To particularly shows the versions of the file mentioned :
git log -follow [file]

26) To show the content change and metadata status of the specific commit :
git show [commit]

27) To connect your local repository to the remote server :
git remote add [variable name] [URL]

28) To send the branch commits to your remote server :
git push [variable name] [branch name]

29) If branch is newly created, then we can upload with this command :
git push --set-upstream [variable name] [branch name]
or
git push -u origin [branch name]

30) To send the commited changes of the master branch to your remote repository :
git push [variable name] master

31) To push all branches to your remote repository :
git push -all [variable name]

32) To fetche and merge changes on the remote server to your working directory :
git pull [repository link]

abdulraffy
Автор

I m very thankful for u to teaching us. Your video is much better than the many paid courses.
Respect u brother...

travelyatri
Автор

The effort you put in teaching is just behind real ❣️.

sagarjat
Автор

you are explaining sweet and simple way....thank you sir....

raviteja