Earlier quoted context omitted.
how do you trust the code claude wrote? don't you get anxiety "what if there's an error in tui code and it would mess up my git repo"?
Isn't it this case no matter who wrote the code? How do you ever run anything if you're worried about bugs?
I found a useful Git one liner buried in leaked CIA developer docs
61–70 of 273 posts
Re: I found a useful Git one liner buried in leaked CIA developer docs
#62[flagged]
Re: I found a useful Git one liner buried in leaked CIA developer docs
#63You probably want git-dmb (dmb = delete merged branches) for a safe and more comprehensive way of dealing with this.
https://github.com/tkrajina/git-plus
Disclaimer, I'm the author ^^
Re: I found a useful Git one liner buried in leaked CIA developer docs
#64I am not sure under what usecases, you will end up with a lot of stale branches. And git fetch -pa should fix it locally
Re: I found a useful Git one liner buried in leaked CIA developer docs
#65Speaking of user friendliness of git UI. I am working on a revision control system that (ideally) should be as user friendly as Ctrl+S Ctrl+Z in most common cases. Spent almost a week on design docs, looking for feedback (so far it was very valuable, btw) https://replicated.wiki/blog/partII.html#navigating-the-hist...
Have you tried Jujutsu? If you want to make a better VCS, your baseline should be that, in my opinion, because it already deals with a lot of the Git pain points whilst be able to read and publish to Git repositories.
Still, many oddities of git are inevitable due to its underlying storage model, so it makes sense to explore other models too.
Re: I found a useful Git one liner buried in leaked CIA developer docs
#66Wait, why would the update for the silly master->main change be swapping the excluded regex instead of just excluding both?
> Since most projects now use main instead of master
some delusions to boot
Re: I found a useful Git one liner buried in leaked CIA developer docs
#67Earlier quoted context omitted.
Can you explain TUI? I have never heard this before
[flagged]
https://en.wikipedia.org/w/index.php?title=Text-based_user_i...
Re: I found a useful Git one liner buried in leaked CIA developer docs
#68Re: I found a useful Git one liner buried in leaked CIA developer docs
#69Dont most git instances, like github, delete branch after a PR was merged, by default? I am not sure under what usecases, you will end up with a lot of stale branches. And git fetch -pa should fix it locally
A lot of my developer colleagues don't know how git works, so they have no idea that "I merged the PR" != "I deleted the feature branch". I once had to cleanup a couple repositories that had hundreds of branches spanning back 5+ years.
Nowadays I enforce it as the default project setting.
Re: I found a useful Git one liner buried in leaked CIA developer docs
#70Dont most git instances, like github, delete branch after a PR was merged, by default? I am not sure under what usecases, you will end up with a lot of stale branches. And git fetch -pa should fix it locally