All Projects → gitless-vcs → Gitless

gitless-vcs / Gitless

Licence: mit
A simple version control system built on top of Git

Programming Languages

python
139335 projects - #7 most used programming language
Roff
2310 projects
shell
77523 projects

Projects that are alternatives of or similar to Gitless

Influx Prompt
An interactive command-line InfluxDB cli with auto completion.
Stars: ✭ 42 (-97.47%)
Mutual labels:  cli, developer-tools
Toc
🚩 TOC, zero configuration table of content generator for Markdown files, create table of contents from any Markdown file with ease.
Stars: ✭ 66 (-96.02%)
Mutual labels:  cli, developer-tools
Http Prompt
An interactive command-line HTTP and API testing client built on top of HTTPie featuring autocomplete, syntax highlighting, and more. https://twitter.com/httpie
Stars: ✭ 8,329 (+401.75%)
Mutual labels:  cli, developer-tools
Hostctl
Your dev tool to manage /etc/hosts like a pro!
Stars: ✭ 642 (-61.33%)
Mutual labels:  cli, developer-tools
Wordup Cli
Wordup is a fully integrated development platform for WordPress. Develop plugins and themes locally. Preview in the cloud. Automatic updates in WP.
Stars: ✭ 116 (-93.01%)
Mutual labels:  cli, developer-tools
Gita
Manage many git repos with sanity 从容管理多个git库
Stars: ✭ 865 (-47.89%)
Mutual labels:  cli, developer-tools
Xxv
The XXV visual hex viewer for the terminal.
Stars: ✭ 61 (-96.33%)
Mutual labels:  cli, developer-tools
Npkill
List any node_modules directories in your system, as well as the space they take up. You can then select which ones you want to erase to free up space.
Stars: ✭ 5,325 (+220.78%)
Mutual labels:  cli, developer-tools
Appstoreconnect Cli
An easy to use command-line tool for interacting with the Apple AppStore Connect API
Stars: ✭ 110 (-93.37%)
Mutual labels:  cli, developer-tools
Shtab
↔️ Automagic shell tab completion for Python CLI applications
Stars: ✭ 99 (-94.04%)
Mutual labels:  cli, developer-tools
Wsta
A CLI development tool for WebSocket APIs
Stars: ✭ 611 (-63.19%)
Mutual labels:  cli, developer-tools
Carvel Kwt
Kubernetes Workstation Tools CLI
Stars: ✭ 119 (-92.83%)
Mutual labels:  cli, developer-tools
Terragrunt
Terragrunt is a thin wrapper for Terraform that provides extra tools for working with multiple Terraform modules.
Stars: ✭ 5,446 (+228.07%)
Mutual labels:  cli, developer-tools
Curlie
The power of curl, the ease of use of httpie.
Stars: ✭ 877 (-47.17%)
Mutual labels:  cli, developer-tools
Saws
A supercharged AWS command line interface (CLI).
Stars: ✭ 4,886 (+194.34%)
Mutual labels:  cli, developer-tools
Wago
Automate the actions you do after saving code.
Stars: ✭ 60 (-96.39%)
Mutual labels:  cli, developer-tools
Cmd2
cmd2 - quickly build feature-rich and user-friendly interactive command line applications in Python
Stars: ✭ 342 (-79.4%)
Mutual labels:  cli, developer-tools
Httplab
The interactive web server
Stars: ✭ 3,752 (+126.02%)
Mutual labels:  cli, developer-tools
Run
⚡The resource runtime
Stars: ✭ 90 (-94.58%)
Mutual labels:  cli, developer-tools
Nanobox
The ideal platform for developers
Stars: ✭ 1,530 (-7.83%)
Mutual labels:  cli, developer-tools

Gitless

PyPI version Homebrew Formula

Travis Build Status AppVeyor Build Status

Gitless is a version control system built on top of Git, that is easy to learn and use:

  • Simple commit workflow

    Track or untrack files to control what changes to commit. Changes to tracked files are committed by default, but you can easily customize the set of files to commit using flags

  • Independent branches

    Branches in Gitless include your working changes, so you can switch between branches without having to worry about conflicting uncommitted changes

  • Friendly command-line interface

    Gitless commands will give you good feedback and help you figure out what to do next

  • Compatible with Git

    Because Gitless is implemented on top of Git, you can always fall back on Git. And your coworkers you share a repo with need never know that you're not a Git aficionado. Moreover, you can use Gitless with GitHub or with any Git hosting service

Install

Installing Gitless won't interfere with your Git installation in any way. You can keep using Git and switch between Git and Gitless seamlessly.

We currently require Git (1.7.12+) to be installed, but this requirement is going to disappear soon once we finish with our migration to pygit2.

Binary release (macOS and Linux only)

Binary releases for macOS and Linux are available from the Gitless website.

If you've downloaded a binary release of Gitless everything is contained in the gl binary, so to install simply do:

$ cp path-to-downloaded-gl-binary /usr/local/bin/gl

You can put the binary in other locations as well, just be sure to update your PATH.

If for some reason this doesn't work (maybe you are running an old version of your OS?), try one of the other options (installing from source or via the Python Package Index).

Installing from source

To install from source you need to have Python 3.7+ installed.

Additionally, you need to install pygit2.

Then, download the source code tarball and do:

$ ./setup.py install

Installing via the Python Package Index

If you are a Python fan you might find it easier to install Gitless via the Python Package Index. To do this, you need to have Python 3.7+ installed.

Additionally, you need to install pygit2.

Then, just do:

$ pip install gitless

Installing via Homebrew (macOS only)

If you are using Homebrew, a package manager for macOS, you can install Gitless with:

brew update
brew install gitless

Installing via Snapcraft (Linux only)

If you are using Snapcraft, a package manager for Linux, you can install the most recent release of Gitless with:

snap install --channel=beta gitless

You can also use the edge channel to install the most recent build.

Installing via the Arch User Repository (Arch Linux only)

If you are using Arch Linux or any of its derivatives, you can use your favorite AUR Helper and install:

  • gitless for the latest released version
  • gitless-git to build the latest version straight from this repo

Documentation

gl -h, gl subcmd -h or check our documentation

Contribute

If you find a bug, create an issue in our GitHub repository. If you'd like to contribute code, here are some useful things to know:

  • To install gitless for development, install pygit2, clone the repo, cd to the repo root and do ./setup.py develop. This will install the gl command with a symlink to your source files. You can make changes to your code and run gl to test them.

  • We follow, to some extent, the Google Python Style Guide. Before submitting code, take a few seconds to look at the style guide and the Gitless code so that your edits are consistent with the codebase.

  • Finally, if you don't want Travis to be mad at you, check that tests pass in Python 3.7+. Tests can be run with:

    python -m unittest discover gitless/tests
    
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].