mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-24 10:02:26 +03:00
76d687b55c
This updates to a yet-to-be-released version of `gix` to be able to leverage full local-time support thanks to the usage of `jiff`. This means we can now rely on the local `now()` that `gix` signatures come with, which naturally respect environment variables that help to make commits statically known. For the running Tauri application this won't have an effect as it won't inherit environment variables, but the CLI will be different in that regard.
53 lines
1.3 KiB
Bash
53 lines
1.3 KiB
Bash
#!/usr/bin/env bash
|
|
set -eu -o pipefail
|
|
CLI=${1:?The first argument is the GitButler CLI}
|
|
|
|
function tick () {
|
|
if test -z "${tick+set}"; then
|
|
tick=1675176957
|
|
else
|
|
tick=$(($tick + 60))
|
|
fi
|
|
GIT_COMMITTER_DATE="$tick +0100"
|
|
GIT_AUTHOR_DATE="$tick +0100"
|
|
export GIT_COMMITTER_DATE GIT_AUTHOR_DATE
|
|
}
|
|
tick
|
|
|
|
|
|
git init remote
|
|
(cd remote
|
|
echo first > file
|
|
git add . && git commit -m "init"
|
|
)
|
|
|
|
git clone remote single-branch-no-vbranch
|
|
|
|
git clone remote single-branch-no-vbranch-one-commit
|
|
(cd single-branch-no-vbranch-one-commit
|
|
echo change >> file && git add . && git commit -m "local change"
|
|
)
|
|
|
|
git clone remote single-branch-no-vbranch-multi-remote
|
|
(cd single-branch-no-vbranch-multi-remote
|
|
git remote add other-origin ../remote
|
|
git fetch other-origin
|
|
)
|
|
|
|
export GITBUTLER_CLI_DATA_DIR=./user/gitbutler/app-data
|
|
git clone remote one-vbranch-on-integration
|
|
(cd one-vbranch-on-integration
|
|
$CLI project add --switch-to-integration "$(git rev-parse --symbolic-full-name @{u})"
|
|
$CLI branch create virtual
|
|
)
|
|
|
|
git clone remote one-vbranch-on-integration-one-commit
|
|
(cd one-vbranch-on-integration-one-commit
|
|
$CLI project add --switch-to-integration "$(git rev-parse --symbolic-full-name @{u})"
|
|
$CLI branch create virtual
|
|
echo change >> file
|
|
echo in-index > new && git add new
|
|
$CLI branch commit virtual -m "virtual branch change in index and worktree"
|
|
)
|
|
|