Skip to content

Instantly share code, notes, and snippets.

@diego3g
Created November 15, 2019 13:19
Show Gist options
  • Save diego3g/2b563e54e82bed5530d8346b89a701ab to your computer and use it in GitHub Desktop.
Save diego3g/2b563e54e82bed5530d8346b89a701ab to your computer and use it in GitHub Desktop.
[alias]
ci = commit
co = checkout
cm = checkout master
cb = checkout -b
st = status -sb
sf = show --name-only
lg = log --pretty=format:'%Cred%h%Creset %C(bold)%cr%Creset %Cgreen<%an>%Creset %s' --max-count=30
incoming = !(git fetch --quiet && git log --pretty=format:'%C(yellow)%h %C(white)- %C(red)%an %C(white)- %C(cyan)%d%Creset %s %C(white)- %ar%Creset' ..@{u})
outgoing = !(git fetch --quiet && git log --pretty=format:'%C(yellow)%h %C(white)- %C(red)%an %C(white)- %C(cyan)%d%Creset %s %C(white)- %ar%Creset' @{u}..)
unstage = reset HEAD --
undo = checkout --
rollback = reset --soft HEAD~1
@felipealvessi
Copy link

felipealvessi commented Oct 22, 2020

No meu adicionei o pl para git pull

[alias]
pom = push origin master -u
ps = push
pl = pull
ci = commit
co = checkout
cm = checkout master
cb = checkout -b
st = status -sb
sf = show --name-only
lg = log --pretty=format:'%Cred%h%Creset %C(bold)%cr%Creset %Cgreen<%an>%Creset %s' --max-count=30
incoming = !(git fetch --quiet && git log --pretty=format:'%C(yellow)%h %C(white)- %C(red)%an %C(white)- %C(cyan)%d%Creset %s %C(white)- %ar%Creset' ..@{u})
outgoing = !(git fetch --quiet && git log --pretty=format:'%C(yellow)%h %C(white)- %C(red)%an %C(white)- %C(cyan)%d%Creset %s %C(white)- %ar%Creset' @{u}..)
unstage = reset HEAD --
undo = checkout --
rollback = reset --soft HEAD~1

@Monique1929
Copy link

[core]
editor = "C:\Users\Monique\AppData\Local\Programs\Microsoft VS Code\Code.exe" --wait
[user]
name = eumoniqueevelyn@gmail.com
email = 66502970+Monique1929@users.noreply.github.com
[filter "lfs"]
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f

minhas configurações estão diferentes, é assim mesmo ou tenho que adicionar? Além do Alias é claro. / ps: já coloquei usuario e email na linha de comando.

@felipealvessi
Copy link

[core]
editor = "C:\Users\Monique\AppData\Local\Programs\Microsoft VS Code\Code.exe" --wait
[user]
name = eumoniqueevelyn@gmail.com
email = 66502970+Monique1929@users.noreply.github.com
[filter "lfs"]
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f

minhas configurações estão diferentes, é assim mesmo ou tenho que adicionar? Além do Alias é claro. / ps: já coloquei usuario e email na linha de comando.

Acredito que de cada pessoa deve está diferente mesmo. Adiciona as que você quer usar como alias.

exemplo do meu:

[alias]
pom = push origin master -u
ps = push
pl = pull
ci = commit
co = checkout
cm = checkout master
cb = checkout -b
st = status -sb
sf = show --name-only
lg = log --pretty=format:'%Cred%h%Creset %C(bold)%cr%Creset %Cgreen<%an>%Creset %s' --max-count=30
incoming = !(git fetch --quiet && git log --pretty=format:'%C(yellow)%h %C(white)- %C(red)%an %C(white)- %C(cyan)%d%Creset %s %C(white)- %ar%Creset' ..@{u})
outgoing = !(git fetch --quiet && git log --pretty=format:'%C(yellow)%h %C(white)- %C(red)%an %C(white)- %C(cyan)%d%Creset %s %C(white)- %ar%Creset' @{u}..)
unstage = reset HEAD --
undo = checkout --
rollback = reset --soft HEAD~1

@eduardo-sdev
Copy link

Show!!

Copy link

ghost commented Mar 12, 2022

[core]
    editor = code
    whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol
    pager = delta

[init]
    defaultBranch = main

[pull]
    rebase = false

[help]
    autocorrect = 1

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

[alias]
    a = add --all
    cm = commit -m
    lg = log --graph
    st = status -sb
    br = branch
    psh = push -u
    sf = show --name-only

@RonanGil
Copy link

RonanGil commented Aug 18, 2022

Montei esses alias:

  • O primeiro para filtrar a consulta ao git log.
  • O segundo para quando utilizar o git rollback, poder refazer o commit aproveitando a mesma msg anterio.

exemplo: vamos fazer um git lg nos commits que realizaram um fix.
git lg-f fix

[alias]
  lg-f = "!f() { git log -2 --grep=\"$*\" --pretty=format:'%Cred%h%Creset %C(auto, yellow)%>(21,trunc)%ci%x08%x08%Creset %Cgreen<%an>%Creset %s%C(auto)%d' --graph --max-count=15; }; f"
  msgback = commit -C ORIG_HEAD

@als-guerra
Copy link

[filter "lfs"]
	clean = git-lfs clean -- %f
	smudge = git-lfs smudge -- %f
	process = git-lfs filter-process
	required = true

[core]
    editor = vim
    whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol
    pager = delta

[init]
    defaultBranch = main

[pull]
    rebase = false

[help]
    autocorrect = 1

[alias]
  ci = commit
  co = checkout
  cm = checkout master
  cb = checkout -b
  st = status -sb
  sf = show --name-only
  lg = log --pretty=format:'%Cred%h%Creset %C(bold)%cr%Creset %Cgreen<%an>%Creset %s' --max-count=30
  incoming = !(git fetch --quiet && git log --pretty=format:'%C(yellow)%h %C(white)- %C(red)%an %C(white)- %C(cyan)%d%Creset %s %C(white)- %ar%Creset' ..@{u})
  outgoing = !(git fetch --quiet && git log --pretty=format:'%C(yellow)%h %C(white)- %C(red)%an %C(white)- %C(cyan)%d%Creset %s %C(white)- %ar%Creset' @{u}..)
  unstage = reset HEAD --
  undo = checkout --
  rollback = reset --soft HEAD~1

[commit]
	gpgsign = true

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment