7 Git Tips To Overcome Your Fear of Version Control

Поделиться
HTML-код
  • Опубликовано: 19 июн 2024
  • Working with a team of skilled devs and afraid you'll screw the codebase up?
    Worried you're going to overwrite other developers' commits? Or get a complex merge conflict that you can't resolve?
    Well, this video is for you.
    In this video, I'll offer 7 Git tips to help you feel more confident with Git, GitHub, and Version Control in general.
    Timestamps
    00:00 - Intro
    01:30 - Tip 1
    03:15 - Tip 2
    05:55 - Tip 3
    06:18 - Tip 4
    08:34 - Tip 5
    10:14 - Tip 6
    10:48 - Tip 7
    Recommended Git Course
    Learn Git and GitHub in 5 days - geni.us/Nti9J
    ** Career Path Coding Tracks **
    Web Developer - geni.us/jBigBd
    Software Engineer - geni.us/AbMxjrX
    Machine Learning - geni.us/GporLlT
    Python Developer - geni.us/tv2FJBU
    DevOps Engineer - geni.us/MgHtJ
    ** My Coding Blueprints **
    Learn to Code Web Developer Blueprint - geni.us/HoswN2
    AWS/Python Blueprint - geni.us/yGlFaRe
    ** I write regularly **
    travis.media
    ** FREE EBOOKS **
    📘 travis.media/ebooks
    LET'S CONNECT!
    📰 LinkedIn ➔ / travisdot. .
    🐦 Twitter ➔ / travisdotmedia​
    🙋🏼‍♂️ Website ➔ travis.media
    #git #github #versioncontrol #coding
    ** Some of the links in this description may be affiliate links that I may get a little cut of. Thank you.
  • НаукаНаука

Комментарии • 42

  • @leoMC4384
    @leoMC4384 11 месяцев назад +6

    At first I hated Git, I tried to use it and lost an entire day of work. But after learning the basics and work on my own projects I did the opposite: saved my project thanks to Git. Still, I'm scared of working on it on a big corporate project. It's like you read part of my mind with this video. Thank you so much. 👏👏👏

  • @reloadfast
    @reloadfast 11 месяцев назад +11

    CLI vs UI has been a rivalry since graphical user interfaces exist... there is no right or wrong, no work flow optimized way of doing, there is your preferred way and that's it. Do it however it comes natural to you.

    • @zapy422
      @zapy422 9 месяцев назад

      I like git graph too

  • @manojkumar-jt3fw
    @manojkumar-jt3fw 11 месяцев назад +1

    Inspired by Travis journey and started learning DevOps. I completed
    1.Liux Administration (20hrs)
    2.Bash Scripting (17hrs)
    Right now learning Git (22hrs)
    Next will b AWS. (Will prepare at the level of Solutions Associate Architect)

  • @aashish_aryal
    @aashish_aryal 11 месяцев назад +1

    Your channel is a gold mine. You have helped and motivated me to learn. Thank you ❤

  • @ventin75
    @ventin75 11 месяцев назад

    Thanks for the tips Tavis. Those encouraged me to keep exploring.

  • @dimitriskarathanasis8938
    @dimitriskarathanasis8938 11 месяцев назад

    Thank you for sharing! That was a great video!

  • @kenhaley4
    @kenhaley4 11 месяцев назад +2

    Coming from other VCS systems, I have to admit that I found GIT a bit frustrating to learn. Git has more commands, and they work differently. I suppose it's partly because GIT maintains a local repository on the local machine so you can work off-line--including pull, commit, etc. So, I think my learning curve was more about making sure I understand the terminology...that is, exactly what commands do what. This is a great video to help understand that. And I love explanations that say WHEN or WHY you would use the different commands--something that's not always clear in the docs. Also, the tip about using VS Code to do ALL git functions is great. I suspected that was true, but I wasn't sure.
    Thanks for making this video!

  • @aipujols
    @aipujols 11 месяцев назад

    Another great video, thanks Travis!

  • @korg47237
    @korg47237 11 месяцев назад +1

    These tips are awesome, would have been helpful when I started my job earlier this year that first dipped my toes into DevOps but it's still helpful to me now!

  • @ahmedb.hameed3330
    @ahmedb.hameed3330 11 месяцев назад +2

    Thank you for this video. Always appreciate such videos where people sharing knowledge. In a large team, tracking commits that comes from merging is not a trivial thing. The history shows like circuit diagram. While rebasing might be hard as you have to go throw every conflict in those commits and resolve them, but the outcome is a clean git history as rebasing will create new commits hashes.

    • @trappedcat3615
      @trappedcat3615 11 месяцев назад

      Not great when others are working on the branch.

  • @salahiddinediouri280
    @salahiddinediouri280 11 месяцев назад

    this really interested use Cases , thank you for sharing

  • @SchnippSchnappShnappi
    @SchnippSchnappShnappi 2 месяца назад

    This has helped me a lot. Git used to be my personal horror I even wanted to quit my studies just for this reason many times

  • @user-hb6yb6bu8n
    @user-hb6yb6bu8n 5 месяцев назад

    Straight to the point 👍

  • @samarbid13
    @samarbid13 11 месяцев назад +1

    Here is another one:
    You forked an opensource proj, after your change is been accepted and merged, your forked repo is still saying that "you are N commits ahead,"
    to sync it with the upstream you can run:
    git checkout master
    git reset --hard upstream/master
    git push --force

  • @ChimaevMikelson
    @ChimaevMikelson 9 месяцев назад

    great job , keep doing !

  • @hurleywflow2227
    @hurleywflow2227 11 месяцев назад

    Love it 😊

  • @LearnQtGuide
    @LearnQtGuide 11 месяцев назад

    Is that copilot completing your commands on the terminal? That's pretty neat!

  • @SanjeevKumar-dr6qj
    @SanjeevKumar-dr6qj 11 месяцев назад

    It was helpful

  • @mdyousufgazi4030
    @mdyousufgazi4030 11 месяцев назад

    please please please make a detailed video of merge conflict

  • @xiangyx
    @xiangyx 11 месяцев назад

    AWESOME

  • @gearboxworks
    @gearboxworks 11 месяцев назад +1

    "Don't work about Git rebase, especially if you are working on a large project with lots of developers."
    Great advice, unless those in control of that large project dictate that everyone shall always use `rebase`, never `merge`. 😉
    That was the case for my last major client. #fwiw

  • @stacknewbie3815
    @stacknewbie3815 11 месяцев назад

    Everywhere I go , I see version control. I'm fine with everuthing else but, that thing scares me especially when you involve pipelines for continuous integration and development.Every second feels like I might screw up. Thanks for the video.

  • @Quintusflac
    @Quintusflac 11 месяцев назад +1

    Any one use Tower to manage git? It is a GUI app that allows robust git management. Anyone use it before? I like it but I am looking for additional thoughts.

  • @kristoffVillanueva
    @kristoffVillanueva 11 месяцев назад +4

    For the tip#1, when you want to make sure you fetch all the changes happening in the remote master you can just do "git pull origin master" in the branch you are working. This is straightforward and does not involve more steps. Is there any disadvantage of doing this?

    • @ohwow2074
      @ohwow2074 11 месяцев назад

      I've done it before. It was fine.

    • @mrzoobidoo
      @mrzoobidoo 6 месяцев назад

      exactly what I was thinking bro. I was about to ask the same thing, good thing I saw your comment first. But still curious as to the pros and cons of both workflows.

  • @lubenheimer917
    @lubenheimer917 11 месяцев назад

    To Tip1: why not merge from remote/main? any difference beside that my local main is not up to date?

    • @TravisMedia
      @TravisMedia  11 месяцев назад

      That would be the next step. 1 pull down main changes. 2 merge main into branch. 3 merge branch into main (this would take place via a PR)

    • @msana4420
      @msana4420 11 месяцев назад

      @@TravisMedia Won't the PR include the "changes" from the merged master too?

    • @lubenheimer917
      @lubenheimer917 11 месяцев назад

      @@TravisMedia question was If, as the first step, a merge from the remote/main would be possible.
      So Like:
      1. merge from remote/main into branch
      2. push branch to remote
      Negative would be that at this point my local main is not updated.

  • @_truthful_q_
    @_truthful_q_ 8 месяцев назад

    If you work at any reasonably sized organisation, they probably stopped using "master" for "main" more than a year ago.

  • @Msyo_Jaber
    @Msyo_Jaber 6 месяцев назад

    I worke in sores tree that will be easy to worke withe git

  • @DzintarsDev
    @DzintarsDev Месяц назад

    Nay... you simply can't beat keyboard centric (touch type) workflow with pointing your mouse at 598 different buttons just to do simple actions. And imagine... there are custom programmable keyboards out there to bake in entire macros. So... don't talk about GUI superioty in 21st century. And your RSI will thank you later about avoiding mouse.

  • @zzh315
    @zzh315 11 месяцев назад

    Im offended by you using the word “master”

    • @TravisMedia
      @TravisMedia  11 месяцев назад

      Why?

    • @zzh315
      @zzh315 11 месяцев назад

      @@TravisMedia becasue im a special snowflake

    • @larsvontrierpung9337
      @larsvontrierpung9337 11 месяцев назад

      it's going to change to main

    • @_truthful_q_
      @_truthful_q_ 8 месяцев назад

      Main is the word now. If you work in any large organisation, that's been the reality for a while.