chromebrew VS Git

Compare chromebrew vs Git and see what are their differences.

chromebrew

Package manager for Chrome OS [Moved to: https://github.com/chromebrew/chromebrew] (by skycocker)

Git

Git Source Code Mirror - This is a publish-only repository but pull requests can be turned into patches to the mailing list via GitGitGadget (https://gitgitgadget.github.io/). Please follow Documentation/SubmittingPatches procedure for any of your improvements. (by git)
Scout Monitoring - Performance metrics and, now, Logs Management Monitoring with Scout Monitoring
Get early access to Scout Monitoring's NEW Ruby logging feature [beta] by signing up now. Start for free and enable logs to get better insights into your Rails apps.
www.scoutapm.com
featured
InfluxDB - Purpose built for real-time analytics at any scale.
InfluxDB Platform is powered by columnar analytics, optimized for cost-efficient storage, and built with open data standards.
www.influxdata.com
featured
chromebrew Git
26 293
1,924 51,747
- 0.9%
9.8 10.0
about 2 years ago 4 days ago
Ruby C
GNU General Public License v3.0 only GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

chromebrew

Posts with mentions or reviews of chromebrew. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-04-07.
  • Archer T2U Plus
    1 project | /r/chromeos | 1 Aug 2022
    Hello, I have a TP Link Archer T2U Plus adapter with RTL8821AU and I would like to use it on my PC, could you help me? PD: I have tried to install the Linux subsystem but I get an error, so I tried something from this post although I don't know how to use it https://github.com/skycocker/chromebrew
  • What about Linux?
    1 project | /r/chrultrabook | 14 Jun 2022
  • is cross limitless shell?
    1 project | /r/chromeos | 7 Apr 2022
  • This sub right now
    4 projects | /r/linuxmasterrace | 7 Apr 2022
  • Chrome OS Adventure Installing firefox
    2 projects | /r/chromeos | 29 Mar 2022
    I see, to give you a point of view i should mention that Chrome OS itself is a Linux, to test what i mean you can press ctrl+alt+t and crosh terminal window will open(it is different than Linux development environment), now type "uname -a" and you'll see which kernel version it is, and it is actually capable of running regular GNU/Linux applications as expected(*See chromebrew for real world example). Why did they chose virtual machine approach for running regular GNU/Linux applications is for babysitting reasons, and embracing web apps as it is made as thin client rather than full blown OS.
  • With verity disabled, can apt pkg system be installed on cloudReady
    1 project | /r/cloudready | 28 Mar 2022
  • Do GNOME Shell extensions work in Chrome OS?
    2 projects | /r/chromeos | 23 Mar 2022
    Or you could install Chromebrew and use sommelier
  • Do you use ChromeOS as intended?
    1 project | /r/chromeos | 1 Mar 2022
    As a Chromebrew dev... lololol. :)
  • Trying to understand what Chrome OS/Crostini really is and getting a clear hierarchical diagram in my head..
    3 projects | /r/Crostini | 12 Feb 2022
    2- The terminal you see when you activate Linux support is not the terminal of Chrome OS itself but the terminal of virtual machine called Crostini.Although Chrome OS itself is capable of running containers running on top of same kernel(Crouton for real world example) or running GNU/Linux apps even without needing Crostini virtual machine(Flatpak support on the Cloudready and Chromebrew Package Manager directly running on top of Chrome OS for the real world example), see the page below for understanding why they chose this approach(TL; DR Babysitting reasons for someone who uses sudo for everything):
  • Would you guys consider Chrome OS a Linux distro?
    1 project | /r/chromeos | 12 Jan 2022
    Chrome OS itself is pretty much capable of running regular GNU/Linux programs without needing a virtual machine like Crostini, there is even a package manager for it. However like i said Google chooses only using web apps route, Crostini is meant to be only for development purposes and pretty much limited like usb or internal hardware access(like camera) and even the screen sharing itself.

Git

Posts with mentions or reviews of Git. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-09-10.
  • Why some of us like "interdiff" code review systems (not GitHub)
    13 projects | news.ycombinator.com | 10 Sep 2024
    > Because it was under 1000 layers of other bullshit

    Not only because of that.

    git-range-diff, while absolutely a killer feature, is a relatively new feature of git as well (a bit similarly to "git rebase --update-refs" -- which I've just learned of from you <https://news.ycombinator.com/item?id=41511241>, so thanks for that :)).

    Namely, git-range-diff existed out-of-tree as "git tbdiff" <https://github.com/trast/tbdiff> originally. It was ported to git proper in August 2018 <https://github.com/git/git/commit/d9c66f0b5bfd>; so it's not a feature people could have used "15 years ago".

    (FWIW, before git-range-diff was a thing, and also before I had learned about git-tbdiff, I had developed a silly little script for myself, for doing nearly the same. Several other people did the same for themselves, too. Incremental review was vital for most serious maintainers, so it was a no-brainer to run "git format-patch" on two versions of a series, and colordiff those. The same workflow is essential for comparing a backport to the original (upstream) version of the series. Of course my stupid little script couldn't recognize reorderings of patches, or a subject line rewrite while the patch body stayed mostly the same.)

  • Shell.how: Explain Shell Commands
    3 projects | news.ycombinator.com | 24 Aug 2024
  • Ask HN: How popular is Tcl in 2024?
    1 project | news.ycombinator.com | 30 Jul 2024
    >> So it's hard for me to recommend tk for GUI development.

    Tcl/Tk is widely used in lightweight legacy GUIs.

    Python distributions will typically include tkinter (https://docs.python.org/3/library/tkinter.html) which is just a Python wrapper for Tk.

    Git usually includes the gitk graphical utility which is written in Tcl/TK: https://github.com/git/git/blob/master/gitk-git/gitk

    It's probably in use in other places, but those are two that quickly come to mind.

    I agree that Tcl/Tk is probably not an ideal choice for new projects, but it has a long legacy, is quite stable and likely to be around, largely unchanged, for some time to come.

  • Sublime Merge
    3 projects | news.ycombinator.com | 2 Jul 2024
    `git add` can be quite slow when handling large files, in large repositories, with a large index or on slow platforms. For instance this optimization in git brought the runtime of `git add .` on Windows with 200k files from 6s to 3s: https://github.com/git/git/commit/d1664e73ad96aa08735bf81d48....

    100ms let alone 3s is much too long a wait, so Sublime Merge predicts the outcome of staging and presents that immediately. This made a noticeable improvement to responsiveness even on small repositories under Linux.

  • Getting Started with GitHub CLI: A Quick Guide to Installation and Usage
    3 projects | dev.to | 27 May 2024
    When you have the necessary dependencies, you can obtain the latest tagged Git release from several sources. The tarball is available at the kernel.org site (https://www.kernel.org/pub/software/scm/git) or the GitHub mirror (https://github.com/git/git/tags). The GitHub page typically provides clearer visibility into the latest version, while the kernel.org site offers release signatures for download verification.
  • Git RCE affects recursive clones on case-insensitive filesystems with symlinks
    1 project | news.ycombinator.com | 18 May 2024
  • Git tracks itself. See it's first commit of itself
    1 project | news.ycombinator.com | 3 May 2024
  • Resistance against London tube map commit history (a.k.a. git merge hell) (2015)
    1 project | news.ycombinator.com | 2 May 2024
    Look at any PR/patch series that got merged into the Git project. https://github.com/git/git/

    Any random one. Because those that did not meet the minimum criteria for a well-crafted history would not have passed review.

  • GitHub Git Mirror Down
    1 project | news.ycombinator.com | 11 Apr 2024
  • Four ways to solve the "Remote Origin Already Exists" error.
    1 project | dev.to | 28 Mar 2024

What are some alternatives?

When comparing chromebrew and Git you can also consider the following projects:

HomeBrew - 🍺 The missing package manager for macOS (or Linux)

scalar - Scalar: A set of tools and extensions for Git to allow very large monorepos to run on Git without a virtualization layer

crouton - Chromium OS Universal Chroot Environment

PineappleCAS - A generic computer algebra system targeted for the TI-84+ CE calculators

vscodium - binary releases of VS Code without MS branding/telemetry/licensing

Subversion - Mirror of Apache Subversion

redroid-doc - redroid (Remote-Android) is a multi-arch, GPU enabled, Android in Cloud solution. Track issues / docs here

vscode-gitlens - Supercharge Git inside VS Code and unlock untapped knowledge within each repository — Visualize code authorship at a glance via Git blame annotations and CodeLens, seamlessly navigate and explore Git repositories, gain valuable insights via rich visualizations and powerful comparison commands, and so much more

fusuma-plugin-sendkey - Fusuma plugin that sending virtual keyboard events

linux - Linux kernel source tree

UserLAnd - Main UserLAnd Repository

jj - A Git-compatible VCS that is both simple and powerful

Scout Monitoring - Performance metrics and, now, Logs Management Monitoring with Scout Monitoring
Get early access to Scout Monitoring's NEW Ruby logging feature [beta] by signing up now. Start for free and enable logs to get better insights into your Rails apps.
www.scoutapm.com
featured
InfluxDB - Purpose built for real-time analytics at any scale.
InfluxDB Platform is powered by columnar analytics, optimized for cost-efficient storage, and built with open data standards.
www.influxdata.com
featured