File tree 6 files changed +11
-17
lines changed
6 files changed +11
-17
lines changed Original file line number Diff line number Diff line change 8
8
[alias ]
9
9
graph = log --graph --all --date=relative --pretty=preset
10
10
11
- # git remote rename [old-origin-name] [new-origin-name]
12
- # clone = clone --origin github --recurse-submodules
13
-
14
11
stage = add
15
12
unstage = reset HEAD
16
13
45
42
[filter "lfs "]
46
43
clean = git-lfs clean -- %f
47
44
process = git-lfs filter-process
48
- smudge = git-lfs smudge -- %f
49
45
required = true
46
+ smudge = git-lfs smudge -- %f
50
47
51
48
[sendpack ]
52
49
sideband = false
Original file line number Diff line number Diff line change 14
14
- run : ./install.sh
15
15
- run : sudo apt update
16
16
- run : ./scripts/setup-${{ matrix.os }}.sh
17
+ - run : ./uninstall.sh
Original file line number Diff line number Diff line change 1
1
set completion-ignore-case on
2
-
Original file line number Diff line number Diff line change 1
1
# dotfiles
2
-
Original file line number Diff line number Diff line change 1
1
#! /bin/sh -eu
2
2
3
- dotfiles =$( cd " $( dirname " $0 " ) " ; pwd)
3
+ here =$( cd " $( dirname " $0 " ) " ; pwd)
4
4
5
- for f in " $dotfiles " /.??*
5
+ for f in " $here " /.??*
6
6
do
7
- test " $f " = " $dotfiles " /.git && continue
8
- test " $f " = " $dotfiles " /.gitignore && continue
7
+ test " $f " = " $here " /.git && continue
8
+ test " $f " = " $here " /.gitignore && continue
9
9
ln -sf " $f " " $HOME "
10
10
done
Original file line number Diff line number Diff line change 1
- #! /bin/sh -e
1
+ #! /bin/sh -eu
2
2
3
- dotfiles =$( cd " $( dirname " $0 " ) " ; pwd)
3
+ here =$( cd " $( dirname " $0 " ) " ; pwd)
4
4
5
- cd " $dotfiles "
6
-
7
- for f in .??*
5
+ for f in " $here " /.??*
8
6
do
9
- test " $f " = " .git" && continue
10
- test " $f " = " .gitignore" && continue
7
+ test " $f " = " $here " / .git && continue
8
+ test " $f " = " $here " / .gitignore && continue
11
9
unlink " $HOME /$f "
12
10
done
You can’t perform that action at this time.
0 commit comments