This is not the most comprehensive git course, but it is definitely the BEST!
@donnfelkeryt3 жыл бұрын
Thanks! That’s the intention. To give you the tools you need, not the whole kitchen sink. 😉
@arpie26712 жыл бұрын
Thank you for this tutorial, came here after listening to the podcast. Learned a lot !
@donnfelkeryt2 жыл бұрын
Glad you found it useful!
@tonnie70794 ай бұрын
Hi Donn, just noted that the alias cam = commit -am is sometimes not adding files to be committed and you may need to run: git add . before the cam alias. If you don't run git add . you get this message on git bash: nothing added to commit but untracked files present (use "git add" to track) So I asked ChatGPT which gave me this alias command which is now working fine: cam = !git add . && git commit -am This is the explanation - ensures that all changes are staged before committing them. Now, when you run git cam "your commit message", it will first add all changes and then commit them.
@donnfelkeryt4 ай бұрын
Correct. It will bit add new files. Thanks for the update here and detailed alias to improve it for others. :)
@justp3035 ай бұрын
Great tutorial. Super easy to follow along and very concise.
@amazingtamilmystery11963 жыл бұрын
Hey donn .your kotlin course is awesome .
@donnfelkeryt3 жыл бұрын
Glad you enjoyed it!
@ecmc853 жыл бұрын
Thanks for sharing this course, Donn. I like commands/shortcuts and I'm learning a lot of them in this course.
@donnfelkeryt3 жыл бұрын
I’m glad you’re enjoying it
@amazingtamilmystery11963 жыл бұрын
Best teacher
@donnfelkeryt3 жыл бұрын
Thank you so much
@joshmay95312 жыл бұрын
Thanks Donn! I feel like I'm in the Matrix and I just downloaded "Mastering Git" into my brain 🥷🙏💪
@donnfelkeryt2 жыл бұрын
Lol. Awesome 🤜 💥 🤛
@undefine1173 жыл бұрын
Another way to adding changes to the git is `git add -p` which makes interactive adding all changes by inspecting them and decide if want them. To clean untracked directories we can add `-d` switch to the command `git clean` ;-)
@donnfelkeryt3 жыл бұрын
The patch switch (-p or - -patch) is great for that!
@vediam3 жыл бұрын
Good lesson and good microphone/sound quality :) Thank you !
@donnfelkeryt3 жыл бұрын
Glad you enjoyed! Thanks for watching!
@edipsaln2 жыл бұрын
Very valuable course. It is a great reference for git. Thank you!
@imharshvardhan3 жыл бұрын
Thank you for the video and your configs files, always an inspiration.
@donnfelkeryt3 жыл бұрын
Glad you enjoyed them and the course!
@blackcitadel373 жыл бұрын
Awesome 10/10. Do you plan making more courses, like HTML, CSS, JS, etc? Thx
@donnfelkeryt3 жыл бұрын
Eventually, yes
@mainkt92122 жыл бұрын
I liked your fish shell theme :)
@donnfelkeryt2 жыл бұрын
Here's my fish config if you're interested: gist.github.com/donnfelker/5f4f76fec809c7be9347b7c17f0d3b43
@SunitRoy3 жыл бұрын
Donn you are a inspiration ❤️
@donnfelkeryt3 жыл бұрын
Thank you
@tonnie70792 жыл бұрын
I learnt Git Aliases, - am staging flag, generating .gitignorefile, git merge 3way conflict resolution and merge tools. Thanks
@donnfelkeryt2 жыл бұрын
Glad you liked it!
@EngMuhammadAmmar3 жыл бұрын
Sir Keep It Up , You Are Teaching Very Well ... ♥️
@donnfelkeryt3 жыл бұрын
Thanks a ton
@henrykissenger49432 жыл бұрын
What a valuable tutorial, thanks Donn!
@donnfelkeryt2 жыл бұрын
Thanks!
@T9user3 жыл бұрын
Thanks for this!
@donnfelkeryt3 жыл бұрын
You bet
@T9user3 жыл бұрын
This course helped me out a ton for an interview for which I got my first job in software development! Will be working on React Native. Do you have any courses for that?
@donnfelkeryt3 жыл бұрын
@@T9user I’m glad to hear that this helped you land a job! That’s awesome. I don’t have one on react native at this time, maybe in the future.
@akshayashok88083 жыл бұрын
Hey Donn, Which theme are you using for your Fish-Shell? is it bobTheFish?
@donnfelkeryt2 жыл бұрын
Here's my fish config if you're interested: gist.github.com/donnfelker/5f4f76fec809c7be9347b7c17f0d3b43
@MDDanishAnsariDev3 жыл бұрын
Thanks Donn sir for this
@donnfelkeryt3 жыл бұрын
You bet. Glad you like it.
@naserghodsian55453 жыл бұрын
Dear Donn, when I create a new branch in an Android project and make some changes, all those changes will appear on the master branch as well. It doesn’t happen for Kotlin or C++ projects on my laptop. Is there any specific consideration that I’m missing when it comes to Android?
@donnfelkeryt3 жыл бұрын
Git is file system based. It doesn’t care about what it’s working with. What’s likely happening is that there are some ignored files/folders in the cache. Those are ignored in the .gitignore file. When you switch back to master from your other branch that cache is still there. You’ll likely need to clear/clean your cache when you switch branches. I used to have this problem in Android a lot and it was frustrating because Gradle would pick up stuff that was not there. I’d sometimes have to clean with gradle and invalidate the caches in Android Studio too. It was a pain, but that’s what fixed it.
@kasemsm80923 жыл бұрын
Nice
@donnfelkeryt3 жыл бұрын
Thanks
@kasemsm80923 жыл бұрын
Thanks to you, whole 2 hours is worth. 🔥
@donnfelkeryt3 жыл бұрын
@@kasemsm8092 awesome to hear! 💪🏻
@shobhitchoudhury53333 жыл бұрын
hey, so I have vscode and whenever I try to open up a folder in my desktop with vscode it says that "git has over 5000 active change", is there any way to get rid of this?
@donnfelkeryt3 жыл бұрын
There could be a number of reasons why you’re getting this error. Do some googling with the error message and you’ll find a couple of stack overflow posts as well as a couple of posts on Microsoft’s site. Those should point you in the right direction.
@kamalCode3 жыл бұрын
Flutter course
@donnfelkeryt3 жыл бұрын
This is a Git course, if you're looking for a Flutter course, check out Rohan's course here: kzbin.info/www/bejne/g4nLZGeFaq9rftk