🌳🚀 CS Visualized: Useful Git Commands

By DEV Community - 2021-01-01

Description

Although Git is a very powerful tool, I think most people would agree when I say it can also be... a... Tagged with git, computerscience, tutorial.

Summary

  • Useful Git Commands Although Git is a very powerful tool, I think most people would agree when I say it can also be... a total nightmare 😐 I've always found it very useful to visualize in my head what's happening when working with Git: If we committed changes on the current branch that the branch we want to merge doesn't have, git will perform a no-fast-forward merge.
  • When trying to merge the branches, Git will show you where the conflict happens.
  • 🎊 A big difference compared to merging, is that Git won't try to find out which files to keep and not keep.

 

Topics

  1. Management (0.24)
  2. Backend (0.18)
  3. Frontend (0.15)

Similar Articles

adamerose/PandasGUI

By GitHub - 2020-10-21

A GUI for Pandas DataFrames. Contribute to adamerose/PandasGUI development by creating an account on GitHub.

RxJS in Angular: Part III - RxJS inDepth

By inDepthDev - 2021-01-22

In my previous two articles we have discussed how to change our components which solve problems in imperative ways to do that in functional, reactive, RxJS way, and we of course had a lot of fun doing ...

8 Awesome React Hooks

By DEV Community - 2020-12-30

React.js is currently the most popular JavaScript library for front end developers. Invented by Faceb... Tagged with react, javascript, webdev, beginners.