this post was submitted on 31 May 2026
1 points (100.0% liked)

linux4noobs

4319 readers
3 users here now

linux4noobs


Noob Friendly, Expert Enabling

Whether you're a seasoned pro or the noobiest of noobs, you've found the right place for Linux support and information. With a dedication to supporting free and open source software, this community aims to ensure Linux fits your needs and works for you. From troubleshooting to tutorials, practical tips, news and more, all aspects of Linux are warmly welcomed. Join a community of like-minded enthusiasts and professionals driving Linux's ongoing evolution.


Seeking Support?

Community Rules

founded 3 years ago
MODERATORS
 

Imagine a young explorer who's just heard that word, "git". But it actually means an entire world. How is this young explorer supposed to dive into this mysterious world with just a machine in hand ?

He's got vs code though !! And he's also got fish and zsh on WSL !

you are viewing a single comment's thread
view the rest of the comments
[–] LoveEspresso@cafe.coffee-break.cc 0 points 1 month ago (1 children)

Probably that's the property of git that l stumbled upon ?

But how do l save art files locally in the form of git ?

[–] forestbeasts@pawb.social 0 points 1 month ago* (last edited 1 month ago) (1 children)

Same as you would anything else!

git init (if you're making a new repository)
git add somefile.kra
git commit (and then write your commit message)

[–] LoveEspresso@cafe.coffee-break.cc 0 points 1 month ago (1 children)

But l need to download git into my system locally for my machine to understand the command, correct ?

In that case, how do I install git ?

[–] forestbeasts@pawb.social 0 points 1 month ago (1 children)

Oh yep! If you're on Linux, sudo apt install git should sort you out if you're on a Debian-ish distro (including Mint or Ubuntu). Fedora it's sudo dnf install git, Arch... uhh... I don't know a ton about Arch's pacman.

it's already there, now that I see it.