Skip to content

Commit 8858afc

Browse files
committed
cleanup
1 parent 0b6f53f commit 8858afc

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

Crossfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
#
22
# This is an example Crossfile, see more under `./examples`
33

4-
# use upstream
5-
cross use git-cross https://github.com/epcim/git-cross.git
4+
# define upstream repos
5+
use git-cross https://github.com/epcim/git-cross.git
66

7-
# configure local patch
8-
cross patch git-cross:. vendor/git-cross
9-
cross sync
7+
# patch their paths to local
8+
patch git-cross:. vendor/git-cross
9+
sync
1010

11-
# status
1211
# git remote -v | grep fetch | column -t
12+
# git worktree list
1313

Justfile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,12 @@ setup:
1212
# Check if direnv is available
1313
if command -v direnv >/dev/null && test -f .envrc
1414
if not direnv status | grep -q "Found RC allowed true"
15-
echo "🔧 Setting up direnv..."
1615
direnv allow .
17-
echo "✅ direnv configured! Reload your shell or run: eval \"\$(direnv export fish)\""
1816
end
1917
end
2018

2119
# Check for required dependencies
22-
check-deps: setup
20+
check-deps:
2321
#!/usr/bin/env fish
2422
set -l missing
2523
for cmd in fish rsync git python3 jq yq

0 commit comments

Comments
 (0)