Update config
This commit is contained in:
parent
fff1a25a8f
commit
f21a2167f1
2 changed files with 9 additions and 2 deletions
|
@ -189,8 +189,10 @@ function doTo_(to){
|
||||||
if(to[0]!="/" && to.indexOf("//")==-1){
|
if(to[0]!="/" && to.indexOf("//")==-1){
|
||||||
to = "/"+to;
|
to = "/"+to;
|
||||||
}
|
}
|
||||||
to = to
|
to = to.replace(/\*/g,"$1");
|
||||||
.replace(/\*/g,"$1");
|
if(to.indexOf(" ") != -1){
|
||||||
|
to = '"' + to + '"';
|
||||||
|
}
|
||||||
return to;
|
return to;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -15,3 +15,8 @@
|
||||||
detach = "!git checkout $(git rev-parse HEAD)"
|
detach = "!git checkout $(git rev-parse HEAD)"
|
||||||
undo = reset --soft HEAD^
|
undo = reset --soft HEAD^
|
||||||
|
|
||||||
|
[filter "lfs"]
|
||||||
|
process = git-lfs filter-process
|
||||||
|
required = true
|
||||||
|
clean = git-lfs clean -- %f
|
||||||
|
smudge = git-lfs smudge -- %f
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue