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 !

20 Comments
okwhateverdude@lemmy.world · 13 pts · 77d
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.
LoveEspresso@cafe.coffee-break.cc · 4 pts · 77d
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 · 2 pts · 75d
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.
LoveEspresso@cafe.coffee-break.cc · 1 pts · 75d
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 pts · 75d
Same as you would anything else!
git init(if you're making a new repository)git add somefile.kragit commit(and then write your commit message)LoveEspresso@cafe.coffee-break.cc · 1 pts · 75d
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 pts · 75d
Oh yep! If you're on Linux,
sudo apt install gitshould sort you out if you're on a Debian-ish distro (including Mint or Ubuntu). Fedora it'ssudo dnf install git, Arch... uhh... I don't know a ton about Arch's pacman.LoveEspresso@cafe.coffee-break.cc · 2 pts · 75d
it's already there, now that I see it.
LoveEspresso@cafe.coffee-break.cc · 1 pts · 75d
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 · 9 pts · 77d
https://learngitbranching.js.org/
xep@discuss.online · 7 pts · 77d
Go in a empty directory and type
git init .Then have at it.
Zugyuk@lemmy.world · 6 pts · 77d
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
LoveEspresso@cafe.coffee-break.cc · 1 pts · 77d
Thanks for this.
textik@sh.itjust.works · 4 pts · 77d
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.
forestbeasts@pawb.social · 1 pts · 75d
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:
git reflog. Can save your butt if a rebase or whatever goes sideways and you get screwed up.-- Frost
LoveEspresso@cafe.coffee-break.cc · 1 pts · 75d
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 pts · 75d
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.
LoveEspresso@cafe.coffee-break.cc · 1 pts · 75d
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 ?
forestbeasts@pawb.social · 1 pts · 74d
I have no idea honestly!
-- Frost
LoveEspresso@cafe.coffee-break.cc · 1 pts · 74d
https://github.com/pcottle/learnGitBranching