DEV Community

Bhupesh Varshney 👾
Bhupesh Varshney 👾

Posted on

What are some things that you don't like about git?

Git has been in the making since 2005, and probably 90% developers use it everyday
What are some pain-points that you face with git everyday or have encountered occasionally?

Leaving the classic, Hitler uses git meme for some gags:)

Top comments (23)

Collapse
 
pandademic profile image
Pandademic

off the top of my head?
capitalization
why
git stage -A
not
git stage -a
or another problem....
why doesn't git commit accept a message by default!?!?
why -m?!??!
Other than this small stuff.... Git is great!

Collapse
 
darkwiiplayer profile image
𒎏Wii 🏳️‍⚧️

why doesn't git commit accept a message by default!?!?

It's bad enough that -m is an option at all; why would that ever be a default?

Collapse
 
damjand profile image
Damjan Dimitrov

This and what @pandademic said can be resolved by creating terminal aliases for specific commands. For example I have git adcom "msg" which is an alias for "git add ." combined with "git commit -m 'msg'"

Thread Thread
 
pandademic profile image
Pandademic

yes(off-topic: we could also use git aliases) , that's what I do @damjand , but I just feel that it would make everyone's life a little easier not to have more aliases to remember.

Thread Thread
 
damjand profile image
Damjan Dimitrov

The point of aliases is not just to have shortcuts but to also make commands that are so short and custom-tailored that you don't even have to remember them like you do for built-in commands :)

Collapse
 
pandademic profile image
Pandademic

I just feel we don't need to open $EDITOR every time we want to commit something.

Thread Thread
 
darkwiiplayer profile image
𒎏Wii 🏳️‍⚧️

Technically there's nothing wrong with that, but it is a sign that you might be doing something wrong. If you make a commit, you should be spending some time thinking about what you are doing, what you want to write, and what files are affected.

Having an editor open gives you that time. Using -m on the other hand only discourages writing proper multiline messages when they are actually needed. When you already wrote a summary and notice you might want to add a few more lines, it's way easier if you already have an editor than if you just wrote the whole thing on the commandline and would have to delete it all then reproduce it in the editor.

Thread Thread
 
pandademic profile image
Pandademic

very true... I didn't think of it like that

Collapse
 
eljayadobe profile image
Eljay-Adobe

I rather like git.

I definitely like git better than the other source control systems I've used: PVCS, MS-Delta, MS-SourceSafe, MS-TFS/TFVC, RCS, CVS, Subversion, Source Depot, and Perforce. (I've not used Mercurial, but from what I've heard about it there is a good chance I'd like Mercurial better than git.)

I'm not a git-guru. I often have to ask git-gurus how to do things. Sometimes those things are what I'd consider easy, but I'm stymied. Sometimes those things are hard, and I've no clue. Regardless, the git-gurus show me how to do these things, both easy, and hard. Kudos to the git-gurus, and their willingness to help the clueless like myself.

I'm sad that the one git graphical interface I've found — which works the way I think — seems to have become abandoned a few years back. Cycligent Git Tool. /sadpanda

On Facebook, one angry south pole elf said this about git...

Git makes simple things hard,
makes difficult things impossible,
and makes dangerous things easy.

I understand where he's coming from. I don't share the anger, but I do understand, and I cannot begrudge him his anger.

Collapse
 
ben profile image
Ben Halpern

Looking forward to reading the conversation!

This reminds me of another post I made a few years ago asking folks whether they thought git could/should be superseded, and got some great responses.

Encourage folks to read through that discussion after they've commented here.

Collapse
 
kryptobi profile image
kryptobi

its not a thing that i dont like but "rebase --onto" is a little bit tricky and confusy

Collapse
 
leob profile image
leob

Lol hadn't even heard about that one, "git merge" for me to be honest as it's safe and simple ...

Collapse
 
leob profile image
leob

Git is one of the most brilliant pieces of software, so it doesn't deserve to be criticized haha, but what irks me somewhat is the eternal discussion and confusion about "git merge" vs "git rebase", but even that isn't really the fault of Git.

Collapse
 
bhupesh profile image
Bhupesh Varshney 👾

Agreed that Git is great, but like everything which is adopted by masses needs to be criticised in a healthy manner
So as to improve the experience :)

Collapse
 
leob profile image
leob

Well what matters to me isn't that Git is perfect, but that it's "good enough" (make that, very good) - AND, that it is a standard, which almost everyone uses, and for a reason (I mean, who would want to go back to CVS or Subversion?)

Collapse
 
po0q profile image
pO0q 🦄

You can use the same commands to do very different things. Pretty confusing for beginners.

Collapse
 
pandademic profile image
Pandademic

definitely Also , the wrong order of flags can do something different!
eg:
git commit -am "this is different"
from
git commit -ma "this"

Collapse
 
tinesife94 profile image
Felipe • Edited

Git seems to be designed to work well with lots of code repositories of different developers, each of them doing their own thing, occasionally going "oh, this thing from repository x of developer y may be useful to me, let me get that".

Instead, git is used, most of the time, with "single source of truth" repositories.

Considering that the software was designed with the Unix philosophy in mind, it can be daunting, to say the least, for a beginner to learn to use Git the way it really is used in the market instead of the way it was designed to be used.

Couple that with some theatrics terminology (staging area and the like), and you may have some new developers screaming and pulling their hairs out.

Interestingly, Linus seems to always make awesome software that is successful in lots of contexts, except the ones that it was intended to. The Linux kernel is an absolute success in all types of devices, except the one that it was originally intended to.

Collapse
 
liviufromendtest profile image
Liviu Lupei

That some developers are emotionally attached to it.

Other professions have figured out how to work on the same files without affecting each other (such as Lawyers), and it doesn't involve writing commands like a hacker from 1998.

And speaking of hackers, be sure not to put any sensitive info in your git:
thehackernews.com/2022/04/github-s...

P.S. I've seen situations where developers didn't understand that they can manage shared access to a resource without exporting it and putting it into git.

Collapse
 
hiteshtech profile image
Info Comment hidden by post author - thread only accessible via permalink
Hitesh Chauhan

The only thing, I don't like about git is I don't have much followers over github !!!lol
github.com/hiteshtbi
You can see by yourself.

Collapse
 
darkwiiplayer profile image
𒎏Wii 🏳️‍⚧️

I mean, with two repositories, I don't know what you expect 😝

Collapse
 
hiteshtech profile image
Hitesh Chauhan

I know what exactly do you mean. But it was only for fun!!

Collapse
 
dugu007 profile image
dpd007

conflicts, i am new yet..

Some comments have been hidden by the post's author - find out more