Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
run: |
docker exec test_container sh -c "tar -xf dotfiles.tgz"
docker exec test_container sh -c "./make.el"
docker exec test_container sh -c 'stow -t $HOME --dotfiles emacs bash'
docker exec test_container sh -c 'stow -t $HOME --dotfiles emacs bash git'
docker exec test_container sh -c 'ls -a ~'

- name: Install emacs packages
Expand Down
3 changes: 3 additions & 0 deletions dotfiles.org
Original file line number Diff line number Diff line change
Expand Up @@ -1460,6 +1460,9 @@ Pretty barebones git config really

# If fzf is installed, this gives a nice interactive way to delete unwanted branches. Mark with TAB before finishing with RET.
rm-branches = !bash -cl 'echo $(git branch | fzf -m) | xargs git branch -D'

# Show all aliases
alias = !bash -ci 'git config list | grep alias'
#+END_SRC


Expand Down
4 changes: 4 additions & 0 deletions tests/other_tests.bats
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,7 @@
@test "fish: check syntax of .fish files" {
find -XL ~/.config -name '*.fish' | xargs -n 1 fish --no-execute
}

@test "git: check git aliases have been added" {
git alias
}