Compare commits
No commits in common. "465c1d121b033fd70b8cb0b5187c28de47cb8065" and "ac4224804b2b458ff9853fbd949c4a100ae72dec" have entirely different histories.
465c1d121b
...
ac4224804b
8 changed files with 17 additions and 25 deletions
|
|
@ -1,9 +0,0 @@
|
||||||
# This is the gitattributesdb database file.
|
|
||||||
# Do not manually edit this file - any changes will be overwritten.
|
|
||||||
|
|
||||||
LmdpdGhvb2tzL2dpdGF0dHJpYnV0ZXNkYg== 1757518619.432797732 1757518618.466836488 tadgy:users 0755 - -
|
|
||||||
LmdpdGhvb2tzL3Bvc3QtY2hlY2tvdXQ= 1757518719.301790744 1757518850.675522371 tadgy:users 0755 - -
|
|
||||||
LmdpdGhvb2tzL3Bvc3QtbWVyZ2U= 1757518766.485897550 1757518850.675522371 tadgy:users 0755 - -
|
|
||||||
LmdpdGhvb2tzL3ByZS1jb21taXQ= 1757518781.005315169 1757518850.675522371 tadgy:users 0755 - -
|
|
||||||
LmdpdG1vZHVsZXM= 1757518619.436797572 1757518619.438797492 tadgy:users 0644 - -
|
|
||||||
UkVBRE1FLm1k 1757518519.971788195 1757518530.954347573 tadgy:users 0644 - -
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit aa17af467452849b2204472c8c16d9d3757824af
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
# Store/restore the attributes of files:
|
|
||||||
.githooks/gitattributesdb/gitattributesdb "${0##*/}" || exit $?
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
# Store/restore the attributes of files:
|
|
||||||
.githooks/gitattributesdb/gitattributesdb "${0##*/}" || exit $?
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
# Store/restore the attributes of files:
|
|
||||||
.githooks/gitattributesdb/gitattributesdb "${0##*/}" || exit $?
|
|
||||||
3
.gitmodules
vendored
3
.gitmodules
vendored
|
|
@ -1,3 +0,0 @@
|
||||||
[submodule ".githooks/gitattributesdb"]
|
|
||||||
path = .githooks/gitattributesdb
|
|
||||||
url = https://github.com/tadgy/gitattributesdb.git
|
|
||||||
|
|
@ -7,3 +7,11 @@ List available branches:
|
||||||
|
|
||||||
Check out specific branch:
|
Check out specific branch:
|
||||||
* git checkout <branch name>
|
* git checkout <branch name>
|
||||||
|
|
||||||
|
|
||||||
|
WORKTREES
|
||||||
|
=========
|
||||||
|
Instead of checking out individual branches into the worktree, it is possible to checkout multiple branches into sub-directories to work on concurrently.
|
||||||
|
|
||||||
|
The set up script 'worktrees' in the "master" branch will create the necessary structure and add the worktrees.
|
||||||
|
This script should only be run once per clone's "master" worktree.
|
||||||
|
|
|
||||||
9
worktrees
Executable file
9
worktrees
Executable file
|
|
@ -0,0 +1,9 @@
|
||||||
|
#!/bin/bash
|
||||||
|
# Set up the structure to use worktrees in this clone.
|
||||||
|
|
||||||
|
BRANCHES=("core")
|
||||||
|
|
||||||
|
for BRANCH in "${BRANCHES[@]"; do
|
||||||
|
mkdir -p "$BRANCH"
|
||||||
|
git worktree add "./$BRANCH" "origin/$BRANCH"
|
||||||
|
done
|
||||||
Loading…
Add table
Add a link
Reference in a new issue