5
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

最近のgitconfig

Posted at

最近のWindows環境でのgitconfig

WindowsでのファイルですがLinuxでもほとんど同じ

~/.gitconfig
[user]
  name = taka
  email = ....@.....
[color]
  status = auto
  diff = auto
  branch = auto
  interactive = auto
[alias]
  a = add
  b = branch -v
  ba = branch -av
  br = branch -rv
  bl = blame
  co = checkout
  ci = commit -v
  dw = diff --color-words
  d = diff
  dc = diff --cached
  st = status
  up = pull --rebase
  pr = pull --rebase
  rp = remote prune
  l = log
  ls = log --stat
  lp = log -p
  graph = log --graph --date=short --pretty=format:'%Cblue%h %cd %Cgreen%cn%creset%s'

[diff "xlsx"]
    binary = true
    textconv = ~/.bin/git-xlsx-textconv.pl
[push]
	default = upstream
[core]
	quotepath = false

参考サイト

5
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?