home.social

#gitstash — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #gitstash, aggregated by home.social.

fetched live
  1. Examination of Git Tools That Streamline Code Management

    How these 5 Git tools make writing computer code faster and easier. Learn how tools like Git Stash and Aliases help you fix mistakes and save time today.

    #gitcommands, #codingtips, #softwaredevelopment, #gitstash, #programminghelp

    newsletter.tf/how-to-use-git-t

  2. Merge conflicts in #git are still the hardest work I have to do related to working on a team (I’m not counting code-review). The things I do to branches are probably more complicated than I need them to be. But I’ve found something else in git that takes effort: managing the #gitstash. At this moment I have six entries in my stash. Deciding which ones to keep and which ones to drop and all the commands to manipulate and all the things you can’t do (like renaming entries). Annoying.

  3. @joxean in git I’d just use a branch for this, and use commits.

    You can checkout different branches quickly to switch between different sets of commits you make (e.g. feature branches).

    This SO top answer agrees: stackoverflow.com/questions/36

    You can use git stash too: git-scm.com/docs/git-stash

    It has a “stack” but you can apply a stash out of order.

    I only use stash as a last resort when I get in a tangle, not as a way to store anything; no tips on workflow.

  4. @joxean in git I’d just use a branch for this, and use commits.

    You can checkout different branches quickly to switch between different sets of commits you make (e.g. feature branches).

    This SO top answer agrees: stackoverflow.com/questions/36

    You can use git stash too: git-scm.com/docs/git-stash

    It has a “stack” but you can apply a stash out of order.

    I only use stash as a last resort when I get in a tangle, not as a way to store anything; no tips on workflow.

    #git #perforce #GitStash