26

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 !

top 20 comments
sorted by: hot top controversial new old
[-] forestbeasts@pawb.social 1 points 2 days ago* (last edited 2 days ago)

That picture you included is kinda weird and misleading IMO.

First thing: Ignore the "central repository". There is none. git works entirely locally (this confuses the hell out of people who grew up with CVS/SVN, for some reason). You CAN push and pull to other people's computers, if you want, or your own other computer; all Github or whatever is is a "someone else's computer" in the cloud that you can push to. But you also don't need a remote repository at all. Most of ours don't have one.

Seconding https://learngitbranching.js.org/. It's quite nice.

Some stuff you should know:

  • A commit is a snapshot of everything in the project (that was added to git at the time).
  • A branch is basically just a movable tag pointing to the latest commit, with which you can get to previous commits by walking the chain backwards; when you make a new commit, you move the branch to point to it.
  • You can make alternate timelines by going back to a previous commit (without moving your branch pointer), making a new branch pointer (and switching to it), and editing/committing/etc. That's why they're called branches.
  • There's an undo history for where your branch has been, git reflog. Can save your butt if a rebase or whatever goes sideways and you get screwed up.
  • All your history is in the .git folder in your project folder. Everything. If you back that up you've got the whole history of the project.

-- Frost

I'm unable to play that game. I need more interactive guidance than what the website provides.

Do the developers have any account on GitHub where I can pull up an issue ?

Hello Frost, l need to play with git in order to understand how it works. The picture that l have put up is random. Posting a picture creates a link on piefed, which enables crossposting, hence putting up an image.

Nice to see your reply after quite sometime.

Right now l wish to toy with vs code. I've downloaded one yesterday. I'm not familiar with this this tool yet. It can be used used independently on windows 10, but I wish to use it on WSL.

Can you suggest me some introductory course/tutorial ?

[-] forestbeasts@pawb.social 2 points 2 days ago

uuuhh..? I got no idea how to use VS Code, I don't use VS Code. I'm more a Kate wolf myself. (And vim, but vim is weird and clunky at first and would probably just be frustrating.)

*shoots piefed a very confused look*

Unless you meant a tutorial on git, in which case, the learngitbranching.js.org one is great.

[-] okwhateverdude@lemmy.world 12 points 5 days ago

Depends on the goal. Exploration for exploration sake is probably not going to hold your attention long. git is a tool to track changes. Do you have something you want to change? In other words, you need a reason to use it. Pedantically, your image already has a problem. git is not centralized. It is merely convention that some given local repo is blessed as "upstream". But the whole point is that git is distributed.

Advice: Find a reason to use git. Put your /etc/ under git control, for example. Or something in your home directory (lots of people roll some kind of dotfiles repo). Or contribute to a FOSS project that uses git.

This is my github this gives you an idea into how l converted git. But honestly, l need something simple to start with which uses git.

[-] forestbeasts@pawb.social 1 points 2 days ago

You can always version control regular-ass documents, art files, whatever, too! You might not be able to diff them very well, but you can absolutely use git as a bunch of save states.

git is entirely local-only. You don't need to upload anything to github at all.

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 1 points 2 days ago* (last edited 2 days ago)

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)

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 1 points 2 days ago

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.

I would have loved MX Linux, but since l'm using my brother's laptop which runs on windows 10, l'm using WSL, whose default is Ubuntu. But this command works in this setup as well l suppose ๐Ÿ™ƒ๐Ÿ™ƒ๐Ÿ™ƒ

[-] resipsaloquitur@lemmy.cafe 8 points 5 days ago
[-] Zugyuk@lemmy.world 5 points 4 days ago

Make this your background. Use a gui like gitg if you're learning, but repeat the terms on what each action is doing so you can transition to the konsole

Thanks for this.

[-] xep@discuss.online 6 points 5 days ago* (last edited 5 days ago)

Go in a empty directory and type git init .

Then have at it.

[-] textik@sh.itjust.works 4 points 4 days ago

I like to explain it as "advanced undo-redo." Most people who use computers have an intuitive understanding of undo-redo. You can ctrl-z all the way back to when the document was empty, and ctrl-y all the way forward to where you were. The difference with git is that you have to manually create those checkpoints with a commit.

But what if you ctrl-z a few times, and then type something? Most people know that all the changes they just ctrl-z'ed are gone. This is git's first advanced feature: branching. Git allows you to maintain alternate 'timelines' for your file(s), which you can hop between at will. This is also what makes it a powerful collaboration tool: everyone on the team can maintain their own personal branches.

That last capability becomes extremely powerful with the next advanced feature: merging. Git has a number of very nice tools to assist in merging timelines back together, identifying conflicts when needed. This allows teams to set up one "true" branch that is the main (we used to use a different word) timeline. That way, each developer isn't undoing and redoing on the same set of files, they can make their changes in isolation, and when a change is ready, it can be merged back into the main timeline. The proposed changes can be easily seen using git's diff tool, and can be reviewed by the team, further refined, and finally merged with the main timeline. After this operation, the two histories have been joined and everyone else can pull in and start using that change.

I find that's enough to get a new user conceptually oriented. That is, they have a good idea of what they need to do, if not the exact git commands to do it. But that's the easy part, just a quick glance at the man page is all that's needed.

this post was submitted on 31 May 2026
26 points (86.1% liked)

linux4noobs

3208 readers
30 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 2 years ago
MODERATORS