• 0 Posts
  • 53 Comments
Joined 2 years ago
cake
Cake day: June 13th, 2023

help-circle



  • That experience is highly dependent on the Linux distro you’re using. Steam comes preinstalled on gaming-centric distros like Nobara or Pop!_OS. More “general purpose” distros like Mint or Ubuntu might require adding an apt repository before you can install steam from their GUI package managers, but adding an apt repo can be easily accomplished with a GUI as well.

    Basically, if there’s no guide for installing steam for a given distro, or the process of installing steam is more than a couple easy steps, that specific distro probably isn’t well suited to run steam.



  • I’m not claiming that “discard” is a git action. I’m claiming a git user should understand what’s meant by the phrase “discard changes”. Run git status in a repo that has changes in the working directory. In the resulting output, there’s a message:

    Changes not staged for commit:
        (use "git add <file>..." to update what will be committed) 
        (use "git restore <file>..." to discard changes in working directory)
            ...
    

    The phrase “discard changes” is used consistently in git’s output.