this post was submitted on 04 Aug 2023
2 points (75.0% liked)

Murder Drones

98 readers
3 users here now

A lemmy community about Murder Drones, a series made by Glitch Productions & Liam Vickers Animation featuring robots that kill each other for "reasons". Featuring Uzi, N, V, J, Doll, and Cyn.

Rules

  1. Follow Lemmy.world and thelemmy.club instance rules
  2. Must be on topic
  3. No reposts
  4. 7-day spoiler rule from our reddit counterpart applies
  5. No NSFW

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] Hans5958 2 points 1 year ago

CLI (or Linux) users when they found out not everyone uses CLI (they dislike using GUI)

No offence, but I also use SmartGit beside your ol' Git (you should tell them, GUI for Git exists). I know enough how Git works and knows how to do it in the command prompt, but my workflow would be easier when I use the GUI. It's fine for me.

Anyways, creating a branch and merging it is simple.

git branch patch-1
git checkout patch-1
echo "Test file" > test.txt
git add .
git commit -m "Add test file"
git checkout master
git merge patch-1