Skip to content

Commit 506143e

Browse files
committed
upstream merge command
1 parent 9f5ac5e commit 506143e

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

justfile

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
#!/usr/bin/env just --justfile
2+
3+
build:
4+
./gradlew -x test build
5+
6+
dependencies:
7+
./gradlew -q dependencies --configuration compileClasspath > ./dependencies.txt
8+
9+
# Report up-to-date dependencies by com.github.ben-manes.versions
10+
updates:
11+
./gradlew dependencyUpdates > updates.txt
12+
13+
insight:
14+
.gradlew dependencyInsight --dependency commons-codec --configuration scm
15+
16+
wrapper:
17+
./gradlew wrapper --gradle-version=8.13
18+
19+
20+
remotes:
21+
git remote -v
22+
23+
upstream:
24+
git fetch upstream
25+
# git fetch --all
26+
27+
# merge template changes
28+
upstream-merge:
29+
git merge upstream/main --allow-unrelated-histories

0 commit comments

Comments
 (0)