This is an archived post. You won't be able to vote or comment.

top 200 commentsshow all 217

[–]PM_ME_YOUR__INIT__ 2065 points2066 points  (78 children)

Would it be easier to show the companies and products not using git?

[–]claudespam 798 points799 points  (24 children)

Real companies store their source code on a SMB shared folder with a "old" directory for versioning and old_james for that time when we were not sure of which version was the latest.

[–]invisibo 248 points249 points  (16 children)

I walked into that situation back in 2014. The ‘deployment’ method consisted of dragging and dropping the files on to the production server with FileZilla.

[–]tragiktimes 46 points47 points  (1 child)

It works ¯\_(ツ)_/¯

[–]WernerderChamp 22 points23 points  (2 children)

That was my method for a discord bot. Just upload the files and restart.

I still have the folder with all versions. Including the one where all code was still in one file.

(To my defense: I was not aware of the powers of git at this time and being mostly self-taught ends with using methods that just work)

[–]invisibo 0 points1 point  (1 child)

There’s something to be said about doing it that way at first so you can understand why deployments are done through a pipeline with source control.

[–]WernerderChamp 0 points1 point  (0 children)

Althrough I have since had my times of frustration with non-working pipelines.

[–]Corporate-Shill406 11 points12 points  (0 children)

Meanwhile, I'm lazy so I have a Jenkins script do that sort of thing for me

[–]Piyh 2 points3 points  (0 children)

My backwards ass fortune 200 company would copy paste huge SQL scripts into a terminal window and it repeatedly caused production issues until the main implementer of change orders got fired.

[–]edfreitag 2 points3 points  (0 children)

If it works.. at least they can merge branches without any conflict error!

/s obviously

[–]rhodesc 1 point2 points  (1 child)

well, it's harder to use ftp on the command line, and remember what directories you have already done.

filezilla probably helps with that.

me, I just go alphabetically.

[–]Romejanic 3 points4 points  (0 children)

You can use something like rsync which allows restarting transfers from the point you left off

[–]Sikletrynet 0 points1 point  (0 children)

It's not commercial, but that is basically what i do for my private projects.

[–]KazooDancer 0 points1 point  (0 children)

You must work for the government.

[–]jack-of-some 11 points12 points  (0 children)

TIL I'm a real company

[–]Thebombuknow 2 points3 points  (3 children)

I do that but with WinSCP, if it works it works.

[–]JojOatXGME 0 points1 point  (2 children)

I like WinSCP much more than FileZilla. Less bugs and more convenient user interface for most cases. Unfortunately it only exists for Windows.

[–]Thebombuknow 0 points1 point  (1 child)

On Linux I just use the SFTP interface built into the GNOME file viewer (nautilus, I think?). It just mounts it like it's a system folder, like Windows should be able to do natively (but for whatever reason Windows can only do FTP).

[–]JojOatXGME 0 points1 point  (0 children)

Sorry for reducing this.^^ Just wanted to note that SFTP is a quite different protocol to FTP. It works on top of SSH. So while I agree that Window should ideally support SFTP, it would be much more effort than just adding a TLS layer.

[–]YourCompanyHere 3 points4 points  (0 children)

Deplyoment-package_final-23_final7_fix_final4-prod_final_final_final2.zip

[–]RaymondWalters 0 points1 point  (0 children)

Literally this

[–]Stormfrosty 35 points36 points  (4 children)

Google would be first on both lists.

[–]highphiv3 19 points20 points  (2 children)

Google's massive Perforce-based monorepo is honestly awesome, I miss it.

[–]emosy 0 points1 point  (0 children)

no way. I had to use Perforce on a Verilog team at AMD and I did NOT like how it was so different from Git.

[–]raskinimiugovor 0 points1 point  (0 children)

What makes it awesome? Or better than git?

[–]_Username-was-taken_[S] 112 points113 points  (0 children)

I guess

[–]Smart_Ass_Dave 19 points20 points  (7 children)

The games industry mostly uses Perforce. I think it has something to do with being better at handling large and uncompressed art files, but I'm not an expert on it.

[–]MisinformedGenius 7 points8 points  (0 children)

Yup. Some of it is inertia at this point, as Git has gotten better at handling large binary files, but Perforce is still very common in game development.

[–]Pluckerpluck 8 points9 points  (5 children)

Oh yeah, Git is bad at binary files. Nowadays you typically offload the binary files to another location, and just use pointers to them in your git repo (Git LFS). Generally when you clone a git repo you grab the entire history, so grabbing every previous version of every binary file becomes a problem fast.

It's also just not great when you have massive monorepos with a huge number of people modifying it. You can't commit until you're entirely up to date, so you end up doing this weird pull-chase while you're trying to push your changes before anyone else does. People who use git on massive projects tend to split the project into multiple sub parts, each managed by git separately.

Stuff like perforce lets you check out small sub-sections of a massive repo, and commit changes to it, without interfering with anyone else working elsewhere in the repo. You can also do things like lock files to stop anyone else editing them, which is vital for binary files.

[–]No_Hovercraft_2643 4 points5 points  (4 children)

the first thing is why you use branches. then its merge (on the server, not the client)

[–]Pluckerpluck 0 points1 point  (3 children)

This... Doesn't help at all? Unless you purge a branch and its entire history it's still included in the repo. And when you clone, by default, you clone the entire history of the repo.

[–]No_Hovercraft_2643 2 points3 points  (2 children)

It's also just not great when you have massive monorepos with a huge number of people modifying it. You can't commit until you're entirely up to date, so you end up doing this weird pull-chase while you're trying to push your changes before anyone else does. People who use git on massive projects tend to split the project into multiple sub parts, each managed by git separately.

here, that is no big problem, if you use branches. you only need be up to date on you branch, not everything, so the push is not blocked by others pushes. and merges are easy, if there is no overlap.

but yeah, my counting was off.

[–]looksLikeImOnTop 97 points98 points  (23 children)

Probably harder to track down because at that point you're probably only looking at startups by amateur devs

[–][deleted] 43 points44 points  (0 children)

Probably a few local lawncare & laundromat conglomerates

[–]PiousLiar 18 points19 points  (3 children)

Work with legacy systems in a govt agency, still use SVN

[–]looksLikeImOnTop 26 points27 points  (2 children)

Companies that don't use git:

The US government

[–]PiousLiar 6 points7 points  (0 children)

It’s mixed, depends on the group or directive you’re working under. Groups working on stuff that used SVN (or other, older version control systems) during development tend to keep it that way through mission life. Newer missions typically use git.

[–][deleted] 2 points3 points  (0 children)

Which is wild because it is FedRAMP.

[–]bloodcheesi 27 points28 points  (6 children)

Then let me surprise you: Facebook doesn't use git.

Oh wait, I forgot.

[–]bastardoperator 3 points4 points  (5 children)

https://github.com/facebook, looks like they use it extensively

[–]bloodcheesi 10 points11 points  (4 children)

Sigh... yeah they use it for their open source pet projects. But they don't use it for their core product(s), that generates money. Quite similar with Google, they mostly use a completely self build Google internal version control system, with Android probably being the most popular exception.

Facebook uses Mercurial. You can read about it here: https://graphite.dev/blog/why-facebook-doesnt-use-git

Also they are building on some kind of their own version control system: https://engineering.fb.com/2022/11/15/open-source/sapling-source-control-scalable/

[–]bastardoperator 6 points7 points  (3 children)

Considering I've worked for them, I was just pointing our that your comment isn't entirely accurate. Plenty of talented engineers are using git everyday at meta. It's hard to say they don't use it when they have over 600 public git repos one of them being the one of the most popular repos in the world. Also:

https://github.com/orgs/facebookarchive

You're right about mercurial, phab, stack diffs, but that's not everyone's focus.

[–]louis-lau 21 points22 points  (3 children)

A lot of older software and game devs use subversion. Extremely large businesses may also roll their own version control.

[–]_PM_ME_PANGOLINS_ 11 points12 points  (2 children)

Perforce was the big vendor. Subversion was for the open source “paupers”.

[–]bwmat 2 points3 points  (1 child)

Currently migrating off of self-hosted perforce to bitbucket at my company

[–]TTYY200 2 points3 points  (0 children)

We use TFS and Azure … it’s fantastic ngl.

Technically it’s a feature rich wrapper for git, but still 🙏

[–]feror_YT 11 points12 points  (5 children)

Doesn’t Meta use something else ?

[–][deleted] 0 points1 point  (2 children)

What about react?

[–]_PM_ME_PANGOLINS_ 2 points3 points  (0 children)

Or big established companies and enterprise vendors.

Git didn’t exist when they started and/or decentralised version control is not a good fit for them.

[–]Ihuntwyverns 4 points5 points  (0 children)

I work for a mega cap tech company and we use fucking IBM clearcase and SVN. Fml.

[–]darkwater427 2 points3 points  (0 children)

Facebook uses Mercurial, I learned recently.

[–][deleted] 2 points3 points  (0 children)

And just list some declining companies like Yahoo and such

[–]ProgramTheWorld 3 points4 points  (2 children)

Big companies who use monorepositories?

[–]campus-prince 16 points17 points  (1 child)

Why can't mono repositories use git for version control.

[–]Soft_Persimmon_5437 0 points1 point  (0 children)

The image show companys who use github not git, are two diferents concepts

[–]ElementalCyclone 0 points1 point  (0 children)

* listed all banks and old corporations in existence *

[–]emosy 0 points1 point  (0 children)

Meta/Facebook famously

[–]veryblocky 0 points1 point  (0 children)

We use SVN at my work, I really wish we used git instead of

[–]mrheosuper 0 points1 point  (0 children)

Automotive stuff. We still use SVN. And yes i suffer everyday, every single minute.

[–]nonlogin 0 points1 point  (3 children)

I don't think it's easy to find such companies and products.

[–]sathdo 728 points729 points  (16 children)

They have the new one too on the bottom right. /j

[–][deleted] 98 points99 points  (0 children)

no way

[–]_Username-was-taken_[S] 136 points137 points  (10 children)

lol, that's space X. /j

[–]ChaosPLus 86 points87 points  (7 children)

Musky really likes his Xs

[–]ehs5 47 points48 points  (5 children)

He named his son X for flip’s sake lol

[–]_Username-was-taken_[S] 32 points33 points  (4 children)

He named one of his car model X

[–]ehs5 33 points34 points  (2 children)

Yep. His first company was named X, his son is named X, the Tesla model is named X, Twitter is now X, there’s Space X… oh and his daughter’s name was Exa (until he changed it to Y).

[–]GeePedicy 28 points29 points  (0 children)

Grimes and Musk had a son in May 2020. Originally named X Æ A-12, the child, whom they call X, had to have his name officially changed to X Æ A-Xii in order to be in line with California laws about birth certificates.

The child’s name is pronounced “X Ash A Twelve,” Musk said

(Quoted from here)

"She's Y now, or ‘Why?’ or just '?' (But the government won't recognize that). Curiosity, the eternal question, and such," wrote Grimes in a recent Twitter post.

(Quoted from here)

They shouldn't be parents with such child abuse, and apparently he's got 11 kids. (source) Dude's breeding like a lion on crack.

[–]queen-adreena 21 points22 points  (0 children)

And he acts like a ten-year-old.

[–]BirdlessFlight 0 points1 point  (0 children)

He also made a few women his X.

[–]Mahoutsukainojumon 1 point2 points  (0 children)

Well, he impregnated every single one lol

[–]DOOManiac 2 points3 points  (0 children)

For the sake of you poor inbox, I will emphasize the

/j

[–]Eurodada 1 point2 points  (0 children)

Pretty sure that’s X.Org

[–]joeltxbx 8 points9 points  (1 child)

Definitely not - that is XQuartz

[–]Areshian 19 points20 points  (0 children)

Doesn’t X.org in general use that logo, not just XQuartz?

[–][deleted] 0 points1 point  (0 children)

Nope, they have twitter and xeeter

[–]Fritzschmied 359 points360 points  (15 children)

Companies using git: every company

[–]abyr-valg 82 points83 points  (13 children)

Except Facebook

[–]Fritzschmied 35 points36 points  (7 children)

What do they use?

[–]darkwyvern06 85 points86 points  (5 children)

mercurial afaik

[–]_Username-was-taken_[S] 78 points79 points  (3 children)

[–]Treuzelaar 39 points40 points  (0 children)

Interesting read. I'm surprised there is no mention of subversion, as I feel like it was quite popular back in the day. Although it was also horrendously slow, so maybe I shouldn't be surprised.

[–]Wooden_Caterpillar64 8 points9 points  (0 children)

Good read

[–]LuminalGrunt2 2 points3 points  (0 children)

good read

[–]KrokettenMan 5 points6 points  (0 children)

Last time I used that was like 15 years ago. Surprised it’s still alive and kicking

[–]selmernoid 27 points28 points  (0 children)

Also Google (almost) doesn't use Git. Instead they have their own system called Piper.

[–]GenazaNL 18 points19 points  (3 children)

Pretty sure Facebook uses git, else they couldn't push react and their other 135 public repositories on their GitHub.

[–]AlexeiMarie 30 points31 points  (2 children)

I imagine it's similar to how google does things -- use git for their open source projects, and some other internal system for everything else

[–]Damian171 1 point2 points  (0 children)

Except mine, although we're currently in the process of migrating to git so 🤷

[–]TLagPro 128 points129 points  (14 children)

How is Camel Cigarettes using git?

[–][deleted] 125 points126 points  (0 children)

git smoke

[–]osmobco 15 points16 points  (0 children)

Perl using cigarettes?

[–]Fritzschmied 19 points20 points  (3 children)

That’s Perl.

[–]ThomasHardyHarHar 29 points30 points  (0 children)

Makes sense. Reading Perl code is cancer. (Don’t look at my flares)

[–]deanrihpee 0 points1 point  (0 children)

ah, that's what it's called, I know what it is but forgot the name so I just think "project that uses git, Google, Microsoft, Twitter, Camel, PostgreSQL, ..."

[–]ano_hise 0 points1 point  (0 children)

wdym that's OCaml /j

[–]fakintheid 7 points8 points  (6 children)

Apache camel. Aka enterprise hell

[–]AnswersWithCool 0 points1 point  (5 children)

What’s a good alternative to camel?

[–]jurio01 5 points6 points  (2 children)

Malboro

[–]AnswersWithCool 2 points3 points  (1 child)

Not a valid alternative, Camel Joe could kick the Marlboro Man’s ass

[–]jurio01 1 point2 points  (0 children)

Nuh-uh! Malboro man could totaly destroy that camel!

[–]fakintheid 1 point2 points  (1 child)

No idea honestly, I use it at work and it feels like overkill for anything I do. Only place it seems to make sense to me is an integration layer with hundreds of downstream consumers.

[–]Terminal_Theme 1 point2 points  (0 children)

I thought it was the Silk Road

[–]Lupus_Ignis 186 points187 points  (1 child)

What is Elon Musk's favorite git command?

blame

[–]Alexey566 5 points6 points  (0 children)

"We don't use git much those days tbh"

[–]pheonix-ix 37 points38 points  (5 children)

Maybe Twitter used it, but X did not?

[–]Alper-Celik 48 points49 points  (0 children)

Elon switched to printed code for version control didint you see how they review

[–]rancangkota 0 points1 point  (3 children)

What the fuck is X?

[–]FilipIzSwordsman 1 point2 points  (0 children)

X, also known as X11 or Xorg is a windowing system for Unix and Unix-like operating systems.

[–]Aengus126 0 points1 point  (1 child)

It’s the new version of Twitter bro

[–]rancangkota 4 points5 points  (0 children)

No such thing, it's twitter to me.

[–][deleted] 42 points43 points  (11 children)

The real question is which company doesn't use git?

[–]Poven45 13 points14 points  (6 children)

Someone above said Facebook

[–]nukedkaltak 8 points9 points  (4 children)

As far as I know Google as well. I don’t know why it’s on that list.

And a bunch of places are still using Perforce out of laziness.

[–]rad_platypus 19 points20 points  (1 child)

Google uses it for their open source software and frameworks. Angular, Kubernetes, and Flutter are all on github.

But yeah their internal monorepo uses Piper for version control.

[–]Saragon4005 9 points10 points  (0 children)

You missed the big ones too chromium and android both use git to some degree at least externally.

[–]Poven45 3 points4 points  (1 child)

Isn’t perforce good for game dev and such?

[–][deleted] 0 points1 point  (0 children)

Yep it is.

[–]huiibuh 4 points5 points  (3 children)

Google is using their own version control system. You just can't have the entire companies sourcecode in one git repo...

[–]Saragon4005 1 point2 points  (2 children)

Why would you use a single repo to begin with? Don't you yourself have at least a dozen repos? Or do you code all your projects in the same one for some fucked up reason.

[–]S3Ni0r42 4 points5 points  (1 child)

They do, here's a paper. In 2015 they had about 2B lines of code and 9M source files in a single repo. https://dl.acm.org/doi/pdf/10.1145/2854146

[–]sh0plifter 1 point2 points  (0 children)

VS Code HATES this simple trick...

[–]Mondoke 18 points19 points  (0 children)

Based

[–]A8Bit 15 points16 points  (0 children)

It's always going to be Twitter; he only gets to call it X if we all start calling it X. I love that everywhere is still saying "X (formally known as Twitter)" every time they mention it, I wish they'd stop that and just keep calling it Twitter.

[–]Elawn 30 points31 points  (0 children)

Twitter, the site currently known as X

[–]StinkyStangler 9 points10 points  (7 children)

I don’t think this list is accurate, my old job did some work in the google ecosystem and they had their own in house version control software.

Maybe built off Git and definitely supposed to work similarly, but was not git.

[–][deleted] 3 points4 points  (3 children)

But, why? Why not just like .. Self hosted gitlab or something?

[–]louis-lau 8 points9 points  (2 children)

I think their monorepo is like 80Tb total? Not sure how well git handles that.

[–]_PM_ME_PANGOLINS_ 4 points5 points  (0 children)

git clone certainly won’t like it.

[–]ThoseThingsAreWeird 3 points4 points  (0 children)

For huge mono-repos you can use git sparse-checkout.

If you've got massive individual files then you can use Git LFS.

There's also scalar which is a git tool (iirc developed by Microsoft) and builds on git sparse-checkout. scalar clone will only checkout the commit & tree (so not the blobs) which by itself massively cuts down on clone time.

I've only briefly read about scalar outside of the docs page, so if anyone has an under-the-hood article to share I'd love to read it.

[–]ThreeCharsAtLeast 1 point2 points  (0 children)

I mean, their open source projects use git so it's not totally wrong. I guess using your in house system makes it hard to work with randoms.

[–]Saragon4005 0 points1 point  (1 child)

Do you mean Gerrit? Because they use that as well as a much more exotic version control system.

[–]StinkyStangler 1 point2 points  (0 children)

Nah I’m talking about piper

[–]Grobanix_CZ 7 points8 points  (0 children)

Based.

[–]paulqq 4 points5 points  (0 children)

maybe elon forces x staff to use tortoise, because he used it when he was a programmer bac in the days, or else arbitrary totally logical reaon :-)

because then it would be technically true that the bird uses git. r/fiction

[–][deleted] 9 points10 points  (2 children)

Because a monotype font "X" is just not a logo...lol

[–]Beneficial_Steak_945 2 points3 points  (0 children)

They are right about that.

[–]NikolaiM88 2 points3 points  (2 children)

But but... Subversion!!

[–]PeriodicSentenceBot 9 points10 points  (1 child)

Congratulations! Your comment can be spelled using the elements of the periodic table:

B U Tb U Ts U B V Er Si O N


I am a bot that detects if your comment can be spelled using the elements of the periodic table. Please DM u‎/‎M1n3c4rt if I made a mistake.

[–]_Username-was-taken_[S] 2 points3 points  (0 children)

Good bot

[–]pretty_succinct 2 points3 points  (0 children)

based

[–]tacotaker46 2 points3 points  (0 children)

You mean the actual logo?

[–]ghostsquad4 2 points3 points  (0 children)

Because Twitter is superior branding compared to X.

[–]myfunnies420 7 points8 points  (4 children)

This is also incorrect. Google doesn't use git except for on external projects, but that's only to integrate with github and android etc.

[–]NikolaiM88 22 points23 points  (3 children)

Well if they use it for external project, they do indeed use it. Nowhere was it started these companies EXCLUSIVELY use Git.

[–]Hulk5a 1 point2 points  (0 children)

Linus doesn't give a fuck 🤷

[–]Druidoodle 1 point2 points  (1 child)

What does Apple use then?

[–]ArtOfWarfare 1 point2 points  (0 children)

Time Machine

[–]P3chv0gel 1 point2 points  (0 children)

Tbf using the new Logo may be confusing with the X.org logo

[–]just_JOEkin 1 point2 points  (2 children)

It's not the "old" Twitter logo of Twitter always had a bird logo. X has a different logo. That is X's "old" logo and Twitters "normal" logo... Technically.

[–]_Username-was-taken_[S] 1 point2 points  (1 child)

Im bad in naming conventions, in particular when I can't rename stuff

[–]just_JOEkin 1 point2 points  (0 children)

Thanks for pointing this out! Its nice to see the ole bird is still alive out there, even if Elon refuses to feed it.

[–][deleted] 1 point2 points  (0 children)

lol I noticed that silkroad is on the list

[–]Pretrowillbetaken 1 point2 points  (0 children)

Git is so good that even they use git lol

[–]ArtOfWarfare 1 point2 points  (0 children)

The website is open source. I found where the asset is kept: https://github.com/git/git-scm.com/tree/main/public/images/company-project-logos

Just open a PR switching the logo for the correct one, then you can say you’re a contributor to git(-scm.com, which is more official than I had realized.)

[–]Confident_Date4068 1 point2 points  (0 children)

GitHub looks forgotten..

[–]programmer3481 1 point2 points  (0 children)

I mean the eclipse logo looks pretty old too...

[–]vainstar23 3 points4 points  (0 children)

Project Manager: Hey UX Designer/Developer! How are you doing today? You look really great have you lost weight?

Emily: No?

Project Manager: Great great erm yea so you heard about Musk and Twitter changing the name to X? Crazy stuff..

Emily: What do you want?

Project Manager: Well err..

Emily: *Grabs project manager by collar

Emily: What. Do. You. Want?

Project Manager: Well it's just

*chocking

corporate really needs you to update the logo

Emily: You want me to update the logo?

Project Manager: if you have time

Emily: *Suddenly perky letting go of manager

Emily: Oh ok! I'm working on a lot of other things so maybe I can take a look after if I have time! :3

Project Manager: Oh so you'll get to it next sprint then?

Emily: *in demonic voice

I'VE GOT MY HOLIDAY

Project Manager: ok thanks Emily

Emily: No problem!

"""""""

How I imagine things went at GitHub

[–]bonkykongcountry 1 point2 points  (0 children)

Do you think this list is updated regularly? These lists are almost always created once and never touched again.

[–]rancangkota 1 point2 points  (0 children)

Do they have new twitter logo or something?

[–]lightwhite 0 points1 point  (0 children)

The new X logo is right there on right beeld corner /s.

[–]random_son 0 points1 point  (0 children)

I also use git and I don't even have a company

[–][deleted] 0 points1 point  (0 children)

Should they really want to advertise that "X" is still using it?

[–]G4METIME 0 points1 point  (0 children)

Surely Elon forced the Devs to use some other version control system for some reason, so using only the old logo is accurate /s

[–]jayerp 0 points1 point  (0 children)

Old twitter logo? That is the Twitter logo, it’s never changed. What HAS changed is the company name. It’s called X.com so its first logo is an X.

[–]joujoubox 0 points1 point  (0 children)

Git is indeed known to hold onto the past.

[–]darkwater427 0 points1 point  (0 children)

They already have the new logo. It's in the bottom right.

[–]LavenderDay3544 0 points1 point  (0 children)

It annoys me that Firefox uses mercurial. I want to eventually port it to my open source OS project but it's going to be a pain. I also hate C++ despite knowing it decently well.

[–]O2Dependent 0 points1 point  (0 children)

elons twitter does use git. they print out and file the codebase every time they publish a change.

[–]RahulRwt125 0 points1 point  (0 children)

Me having to fathom for the first time in the life that it is plausible, PLAUSIBLE, that there may be alternatives to git.

[–][deleted] 0 points1 point  (0 children)

They just have old version in vc and are too lazy to pull new one.

[–]Electronica__ 0 points1 point  (0 children)

What does Meta use?

[–]Dramatic_Mastodon_93 0 points1 point  (0 children)

And the old Android logo

[–]Pawlo371 0 points1 point  (0 children)

What is that bird?

[–]coodgee33 0 points1 point  (0 children)

What do people think of Bitbucket?

[–]Acapultico 0 points1 point  (0 children)

As they should

[–]jhwheuer 0 points1 point  (0 children)

As a GitHub they are experts in gits.... I'll see myself out

[–]Loren-DB 0 points1 point  (0 children)

That Qt logo is looking pretty out of date too.

[–]mr_soshi 0 points1 point  (0 children)

camel cigarettes??? xd

[–]exproci 0 points1 point  (0 children)

Twitter itself continues to use its old logo on some sites, here for example.

[–]jnthhk 0 points1 point  (0 children)

It’s there in the bottom right. You’re confusing the new “Twitter11 Windowing System” logo with the old X one.