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.
clean,checkout,reset, andrestore. You should be able to avoid this by not using them: every usage ofcheckoutcan be replaced by another command, and the others are specifically for discarding changes.push.autoSetupRemotetotrue. This will automatically create remote tracking branches on push. If you runpush,pull, orfetchwith no arguments they will automatically use your single origin.status --ignore-submodules=dirty. There's also the config optionsubmodule.<name>.ignore=dirty, but that needs to be set for each submodule. You can make that status command an alias if you don't want to type it out every time.commit -- file1 file2 .... You still need to explicitly stage any newly created files, and it won't work during merges.* merge=binary. If both branches have changes to a file, git will not modify the file, but will print an error saying there was a conflict and put it in the "unmerged paths" section of the status.More options
Context Copy link
More options
Context Copy link