Why do you use the terminal?

Waffelson@lemmy.world to Linux@lemmy.ml – 132 points –

Hi, everybody Recently, a guy noticed that I was using it and asked why? For me it because in Linux many things are done through the terminal because Linux has many different desktop environments

He also compared terminal commands with cheat codes in GTA and other games, he understands what benefits you take from them, but not from terminal commands

163

You are viewing a single comment

Because every IDE implementa a different git interface and I can't be bothered to figure out where they hid the commit, push, pull etc. buttons this time.

Damn I hate with a passion the IDE interactions with source control software. I may make use of the visual information they give me, but I still execute the commands in the console.

Same. Git GUIs can be great for examining commit trees, visualising patches, etc. For any write operations (this includes things like fecth and pull which write to .git), it’s all in the shell.

When teaching programming classes it's awful trying to figure out every IDE's git interface that my students are using. Each IDE puts the buttons in very different layouts and they even change the names of the buttons because they don't like the way git itself named operations. It's untenable to know them all and actually be efficient and helpful as the instructor.

Instead, I say they're welcome to use the IDE, but the class materials use the canonical underlying command line tools and terminology. They just need to search for how to translate the real git interface to however their chosen tool does the same operation, but it's up to them to figure it out.

When they do ask for help, I bring up the terminal (usually even inside the IDE) and run the git commands just like we went over in class.