Skip to content
Snippets Groups Projects
Select Git revision
  • 4ca4f85cffde2d1c654f94b55d352f2ae24eb218
  • master default
2 results

requirements.txt

Blame
  • This project manages its dependencies using pip. Learn more
    config 2.40 KiB
    [apply]
        whitespace = fix
    [alias]
        amend = commit --amend
        autorebase = -c 'core.editor=true' rebase -i --autosquash --autostash
        bull = submodule update --remote --init
        cdif = diff --cached --color-words
        cdiff = diff --cached
        cleaan = clean -dX
        cleaaan = clean -dx
        dif = diff --color-words
        empty-commit = commit --allow-empty
    	exec = "!${SHELL:-/bin/sh} -ic "
        ff = merge --no-edit --ff-only master
        fixup = !cd "${GIT_PREFIX:-$PWD}" && git commit --fixup $(git last-commit)
        forget = reset HEAD^
        merg = merge --no-edit
        pop = stash pop
        posh = push --set-upstream origin HEAD
        Pull = pull --progress --ff --tags
        pull-force = !git fetch && git reset --hard "$(git tracking)"
        pushes = !git remote | xargs -n1 git push
        remaster = !git fetch --all && git autorebase origin/master
        rerebase = !git autorebase "$(git tracking)"
        root = rev-parse --show-toplevel
        serve-git = daemon --reuseaddr --verbose --base-path=. --export-all ./.git
        serve-http = !git update-server-info && cd .git && python -m http.server 8080
        shove = push --force-with-lease
        squash = !cd "${GIT_PREFIX:-$PWD}" && git commit --squash $(git last-commit)
        staash = stash push --include-untracked
        staaash = stash push --all --include-untracked
        stat = status --short --branch
        tag-version = !git tag --annotate --force --message "v$(cat VERSION)" "v$(cat VERSION)"
        temptree = !git worktree prune && git worktree add "$(mktemp -d)"
        touch = "!f() { touch \"$@\" && git add -f \"$@\"; }; f"
        tracking = rev-parse --abbrev-ref --symbolic-full-name @{upstream}
        trigger = !git commit --allow-empty --no-edit --amend && git pushes --force-with-lease
    [color]
        grep = true
        ui = auto
    [core]
        whitespace = space-before-tab,-indent-with-non-tab,trailing-space
    [diff]
        renames = copies
    	tool = meld
    [difftool]
    	prompt = false
    [fetch]
        fsckobjects = true
        prune = true
    [filter "ansible-vault"]
        clean = ANSIBLE_VERBOSITY=0 ansible-vault encrypt
        smudge = ANSIBLE_VERBOSITY=0 ansible-vault decrypt
    [grep]
        linenumber = true
    [merge]
        tool = meld
        ff = false
    [push]
        followTags = true
        default = simple
    [rebase]
        autoSquash = true
    [receive]
        fsckObjects = true
    [tag]
        forceSignAnnotated = true
    [transfer]
        fsckobjects = true
    [user]
    	name = Adar Nimrod
    	email = nimrod@shore.co.il
    	signingKey = E3AE9CD4B8EA564BF746CD909C53CFCB9AAA2526