Modern Git Commands and Features You Should Be Using(martinheinz.dev)
martinheinz.dev
Modern Git Commands and Features You Should Be Using
https://martinheinz.dev/blog/109
5 comments
Still amazed there's no "git cp". the workarounds involve rebases and aren't practical.
What do you mean by "git cp"? I have that aliased to "cherry-pick".
If you mean to copy a file/directory and stage it in the process (like "git rm" does for deleting), there's no need to rebase. Just copy the thing and stage it.
If it's something else, then the 2 paragraphs above might be a hint towards why there isn't one.
If you mean to copy a file/directory and stage it in the process (like "git rm" does for deleting), there's no need to rebase. Just copy the thing and stage it.
If it's something else, then the 2 paragraphs above might be a hint towards why there isn't one.
Is worktree good?
I barely know anything about git but one thing I do know is worktrees are the only way I can use it. My mind just doesn't work in a "only one or two branches at a time" mode
For longer lived, bigger projects, absolutely.
For smaller stuff, not as much. I use it everyday for $work, but rarely/if at all for any small personal stuff.
I and others wrote a number of things on a thread a few weeks ago: https://news.ycombinator.com/item?id=39594164
I and others wrote a number of things on a thread a few weeks ago: https://news.ycombinator.com/item?id=39594164
I just learned about worktree (from a recent HN post IIRC) and thought it sounded really helpful for working on multiple simultaneous tasks in nixpkgs. Unfortunately I ran into some error trying to add a second worktree. Will have to take another look.
Git bisect is really useful to see who messed up
Git bisect is really useful for knowing what messed things up, and who would have context about why things were done that way.
having `git bisect run` do the thinking for you is incredible when it works
[deleted]
— switch
— restore
— sparse-checkout
— worktree
— bisect
https://antonz.org/git-by-example/