Yes, but due to its simplicity + extensibility + widespread adoption, I wouldn’t be surprised if we’re still using Git 100+ years from now.<p>The current trend (most popular and IMO likely to succeed) is to make tools (“layers”) which work on top of Git, like more intuitive UI/patterns (<a href="https://github.com/jesseduffield/lazygit">https://github.com/jesseduffield/lazygit</a>, <a href="https://github.com/arxanas/git-branchless">https://github.com/arxanas/git-branchless</a>) and smart merge resolvers (<a href="https://github.com/Symbolk/IntelliMerge">https://github.com/Symbolk/IntelliMerge</a>, <a href="https://docs.plasticscm.com/semanticmerge/how-to-configure/semanticmerge-configuration-guide#HowtoconfigurewithGit" rel="nofollow noreferrer">https://docs.plasticscm.com/semanticmerge/how-to-configure/s...</a>). Git it so flexible, even things that it handles terribly by default, it handles
fine with layers: e.g., large binary files via git-lfs (<a href="https://git-lfs.com" rel="nofollow noreferrer">https://git-lfs.com</a>) and merge conflicts in non-textual files by custom merge resolvers like Unity’s (<a href="https://flashg.github.io/GitMerge-for-Unity/" rel="nofollow noreferrer">https://flashg.github.io/GitMerge-for-Unity/</a>).<p>Perhaps in the future, almost everyone will keep using Git at the core, but have so many layers to make it more intuitive and provide better merges, that what they’re using barely resembles Git at all. This flexibility and the fact that nearly everything is designed for Git and integrates with Git, are why I doubt it’s ever going away.<p>Some alternatives for thought:<p>- pijul (<a href="https://pijul.org" rel="nofollow noreferrer">https://pijul.org</a>), a completely different VCS which allegedly has better merges/rebases. In beta, but I rarely hear about it nowadays and have heard more bad than good. I don’t think we can implement this alternate rebases in Git, but maybe we don’t need to; even after reading the website, I don’t understand why pijul’s merges are better, and in particular I can’t think of a concrete example nor does pijul provide one.<p>- Unison (<a href="https://www.unison-lang.org" rel="nofollow noreferrer">https://www.unison-lang.org</a>). This isn’t a VCS, but a language with a radical approach to code representation: instead of code being text stored in files, code is ASTs referenced by hash and stored in essentially a database. Among other advantages, the main one is that you can rename symbols and they will automatically propagate to dependencies, because the symbols are referenced by their hash instead of their name. I believe this automatic renaming will be common in the future, whether it’s implemented by a layer on top of Git or alternate code representation like Unison (to be clear, Unison’s codebases are designed to work with Git, and the Unison project itself is stored in Git repos).<p>- SVN, the other widespread VCS. Google or ask ChatGPT “Git vs SVN” and you’ll get answers like this (<a href="https://www.linode.com/docs/guides/svn-vs-git/" rel="nofollow noreferrer">https://www.linode.com/docs/guides/svn-vs-git/</a>, <a href="https://stackoverflow.com/a/875" rel="nofollow noreferrer">https://stackoverflow.com/a/875</a>). Basically, SVN is easier to understand and handles large files better, Git is decentralized and more popular. But what about the differences which can’t be resolved by layers, like lazygit for intuition and git-lfs for large files? It seems to me like even companies with centralized private repositories use Git, meaning Git will probably win in the long term, but I don’t work at those companies so I don’t really know.<p>- Mercurial and Fossil, the other widespread VCSs. It seems these are more similar to Git and the main differences are in the low-level implementation (<a href="https://stackoverflow.com/a/892688" rel="nofollow noreferrer">https://stackoverflow.com/a/892688</a>, <a href="https://fossil-scm.org/home/doc/trunk/www/fossil-v-git.wiki#:~:text=Both%20Fossil%20and%20Git%20store,emphasis%20on%20the%20entire%20DAG" rel="nofollow noreferrer">https://fossil-scm.org/home/doc/trunk/www/fossil-v-git.wiki#...</a>.). It actually seems like most people prefer Mercurial and Fossil over Git and would use them if they had the same popularity, or at least if they had Git’s popularity and Git had Mercury or Fossil’s. But again, these VCSs are so similar that with layers, you can probably create a Git experience which has their advantages and almost copies their UI.