Git Fetch Visualized

Поділитися
Вставка
  • Опубліковано 27 гру 2024

КОМЕНТАРІ • 7

  • @WilsonMar1
    @WilsonMar1 6 місяців тому +1

    VisualGit is fantastic! What do we have to do to get it working on macOS and Linux?

    • @Ashotofcode
      @Ashotofcode  6 місяців тому

      Thanks! Working on this at the moment :-) Cheers Mark

  • @ilusionem2347
    @ilusionem2347 Рік тому +2

    nice visual representation !

    • @Ashotofcode
      @Ashotofcode  Рік тому +1

      Thank you! Cheers!
      Have made the tool available so you can experiment yourself on a local repo now too:
      visualgit.net

  • @johnd9155
    @johnd9155 Рік тому +1

    Can you tell me why git seems to remember and use its “fetch memory” for a deleted local repository? I delete a local branch that was tracking a remote, and when that remote is completely replaced and I check it out and track it locally, I’m getting the original local/remote code (without updates/changes) if I don’t fetch first. Why does this happen? Why does git keep the original outdated branch version after the local branch was deleted? Thank you for you help!

    • @Ashotofcode
      @Ashotofcode  Рік тому

      hiya - One possibility I can think of is that the local code will not be deleted immediately when the branch is deleted. It would only be removed on garbage collection in 90 days. And then when we checkout we are not performing a pull/fetch from the new remote and simply refering to the existing old local code.