• Stars
    star
    1,110
  • Rank 41,831 (Top 0.9 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created over 9 years ago
  • Updated over 9 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A git tool with an easy terminal interface.

git commander

A git tool with an easy terminal interface.

ScreenShot

Features

  • git status
  • git add [files]
  • git reset -- [files]
  • git commit [files]
  • git log
  • git reset
  • git diff file
  • git branch
  • git merge (handling conflict)
  • git pull/push

Install & Usage

$ npm install -g git-commander
$ git-commander

Requirements

  • git >= 2.4
  • nodejs >= 0.12
  • blessed >= 0.1.7
  • lodash >= 3.0

Key Configuration

We have two key sets vi and mc preconfigured. The default one is vi.

Using the mc key set

You will need to place a file at ~/.config/git-commander/config.json with the following content:

{
    "keySet": "mc"
}
Redefining keys one by one

You also can redefine keys one by one if you would like. You'll need to extend your ~/.config/git-commander/config.json file with a key called keys and put all your key definitions there. For example if you would like to use the mc key set and make key x quit the application, you'll need to add the following:

{
    "keySet": "mc",
    "keys": {
        "common": {
            "quit": [
                "x"
            ]
        }
    }
}

You can find default settings here.

Troubleshootings

ANSI color codes are displayed

ANSI color codes are being displayed if you set "always" for color settings in your .gitconfig. For fixing this, set "auto" for color settings like below.

[color]
    # diff = always
    diff = auto
    status = auto
    ui = auto
    branch = auto

Non-ascii character problem

If you use non-ascii character for source files, You need to disable the core.quotepath option using following command:

$ git config --global core.quotepath false

License

MIT

More Repositories

1

TensorFlow-Tutorials

ν…μ„œν”Œλ‘œμš°λ₯Ό κΈ°μ΄ˆλΆ€ν„° μ‘μš©κΉŒμ§€ λ‹¨κ³„λ³„λ‘œ μ—°μŠ΅ν•  수 μžˆλŠ” μ†ŒμŠ€ μ½”λ“œλ₯Ό μ œκ³΅ν•©λ‹ˆλ‹€
Python
2,130
star
2

TensorFlow-ML-Exercises

Learning Machine Learning with TensorFlow
Python
263
star
3

WaveNet

Yet another WaveNet implementation in PyTorch.
Python
113
star
4

node-mecab-ya

Yet another mecab wrapper for nodejs
JavaScript
105
star
5

g-coin

A simple implementation of Blockchain for understanding easily
Python
93
star
6

TensorFlow-Multi-GPUs

Samples for Multi GPUs in TensorFlow
Python
83
star
7

7-rules-for-better-code

7 rules for better code
67
star
8

line-notify

A Simple Wrapper for LINE Messenger Notify
Python
51
star
9

TensorFlow-MNIST

MNIST with TensorFlow
Python
44
star
10

imvectordb

Super simple in-memory vector DB for Node.js
TypeScript
39
star
11

llm-chunk

A super simple text splitter for LLM
TypeScript
33
star
12

CycleGAN

Yet another Cycle GAN implementation in PyTorch
Python
25
star
13

chatgpt-nextjs

Next.jsλ₯Ό μ΄μš©ν•œ ChatGPT μ‘μš© μƒ˜ν”Œ
TypeScript
11
star
14

learning-html5

Learning HTML5
8
star
15

candle-songs-by-ilsang

μœ€μΌμƒ μž‘κ³‘κ°€κ°€ λ§Œλ“  μ„Έμ›”ν˜Έμ™€ μ΄›λΆˆμ„ μœ„ν•œ λ…Έλž˜ λͺ¨μŒ
8
star
16

chatpdf-webapp

ChatPDF Simple Clone
TypeScript
7
star
17

chatpdf-vectorsearch

Vector Search for ChatPDF
Python
6
star
18

chatgpt-faq-bot

Embedding 을 ν™œμš©ν•œ ChatGPT Plugin κ³Ό Slack Bot κ΅¬ν˜„
Python
6
star
19

Coding-For-Everyone

μ·¨λ―Έλ‚˜ 일을 더 쉽고 재밌게 ν•  수 μžˆλŠ” μ½”λ”© 배우기!
5
star
20

hubot-maxim

Hubot Maxim(λͺ…μ–Έ/격언) Script
JavaScript
5
star
21

println

Easy console.log for lazy programmers
JavaScript
4
star
22

hubot-lunch-today

점심을 μΆ”μ²œν•΄μ£ΌλŠ” Hubot script
JavaScript
4
star
23

file-walker-server

An Web Based File Browser
CSS
3
star
24

webstorm-color-scheme

WebStorm(IntelliJ) Color Scheme
2
star
25

aws-lambda-nouns

aws lambda function to extract nouns with mecab-ya
JavaScript
2
star
26

emacs.d

Emacs Lisp
2
star
27

node-mecab-ya-example

A mecab-ya example
JavaScript
1
star
28

kaldi-docker

Dockerfile of Kaldi on Ubuntu 16.04
1
star
29

hubot-google-news-reader

Google News Reader for Hubot
CoffeeScript
1
star