Do you have a dumb question that you're kind of embarrassed to ask in the main thread? Is there something you're just not sure about?
This is your opportunity to ask questions. No question too simple or too silly.
Culture war topics are accepted, and proposals for a better intro post are appreciated.

Jump in the discussion.
No email address required.
Notes -
Are people here familiar with git frontends?
Having again lost a day's work to git deciding to delete files I hadn't committed yet (nor will I ever commit to the master), I'm now looking for a git frontend that doesn't completely suck balls. Is there anything that fits the following tenets:
It gets really laborous having to have the actual working copy, the one git wants to see and the authorative origin/master and manually trying to manage them without git completely fucking up my working copy just because a branch pointer was changed somewhere.
I am not a git GUI guy, I've always used IDEs and the CLI. I've heard, however, that many high-caliber devs I know have historically paid for Kraken.
Some of the other things you demand here can and should be set up with pre-command hooks (outlawing other repos). Some can be accomplished by writing your own commands or overwriting the stock ones. I've written 3 for myself:
checkpush- single command to create a new branch on the remote and commit to itfullprune- removes local branches that were deleted in the remote after squash mergesrefresh- gets the latest commits from master and merges them into your current branch. If you squash, it's very reliable.Making committing a single step (no staging) will be very simple this way.
I'm not a high-caliber dev, but I've used and will recommend gitkraken, especially for very large teams or very distributed projects; it's one of the few that handles heavily forked projects and related PRs well. That said, I don't know that that it does much to solve these specific issues.
More options
Context Copy link
More options
Context Copy link
More options
Context Copy link