Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extend git commands #50

Open
wants to merge 28 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 23 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
f812dcd
feat: create bin dir
charlesreffett Nov 12, 2023
eba8203
feat: symlink git commands
charlesreffett Nov 12, 2023
e918e61
feat: git tickets command
charlesreffett Nov 12, 2023
089e44c
feat: git make-release command
charlesreffett Nov 12, 2023
644711e
docs: document the setup scripts and how to use the git scripts
charlesreffett Nov 12, 2023
cb17ff4
style: fix markdown formatting
charlesreffett Nov 12, 2023
33126bc
refactor: fix linting errors
charlesreffett Nov 12, 2023
4d605c2
style: readme line length
charlesreffett Nov 12, 2023
d75fbdc
style: remove double word
charlesreffett Nov 12, 2023
3164672
refactor: delcare and assign separately
charlesreffett Nov 12, 2023
67ce1e2
style: remove pesky trailing spaces
charlesreffett Nov 12, 2023
25b7536
ci: disable shell check SC1091
charlesreffett Nov 19, 2023
5f61c2f
feat: remove adding bin dir to home
charlesreffett Mar 1, 2024
b73539d
feat: remove linking git commands
charlesreffett Mar 1, 2024
8678f49
refactor: move git scripts to hop project bin
charlesreffett Mar 1, 2024
036e8af
docs: remove the install section
charlesreffett Mar 1, 2024
aec9c39
docs: add CLI tooling setup section
charlesreffett Mar 1, 2024
a4d95d9
fix: correctly get the versioning segments and increment
charlesreffett Mar 1, 2024
5559d58
feat: improve branch processing if a target branch doesn't exist
charlesreffett Mar 1, 2024
1358fc9
style: fix formatting
charlesreffett Mar 1, 2024
6a6a485
style: SC2181 (style): Check exit code directly
charlesreffett Mar 1, 2024
9758b41
Merge branch 'master' into feature/extend-git-commands
charlesreffett Mar 1, 2024
5b28a9d
docs: remove shell command example, decided it's just easier to add b…
charlesreffett Mar 1, 2024
53eaad2
Update README.md
charlesreffett Mar 7, 2024
f0058da
Merge branch 'master' into feature/extend-git-commands
charlesreffett Aug 19, 2024
1915151
Merge remote-tracking branch 'origin/feature/extend-git-commands' int…
charlesreffett Aug 19, 2024
02d7051
docs: add simple hop description
charlesreffett Aug 19, 2024
d8fb997
Merge branch 'master' into feature/extend-git-commands
charlesreffett Oct 11, 2024
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
67 changes: 64 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,27 +27,88 @@ cd ./devop-tools/docker/data-source-services && docker-compose up --build -d
```

#### Specific Setup - Windows

* Kill, and optionally disable, the `World Wide Web Publishing Service`
* Run `set COMPOSE_CONVERT_WINDOWS_PATHS=1` in your CMD or PowerShell terminal
* Optionally, [read](https://github.com/docker/compose/issues/4303#issuecomment-379563170) this bug report.

### Optional: Data Source Tools

* Optionally included is the following tools:
* phpMyAdmin
* phpMyAdmin
* `cd ./devop-tools/docker/data-source-tools && docker-compose up --build -d`

## phpMyAdmin

If the optional tools are launched, you can find phpMyAdmin at: localhost:8080

* It supports the following databases...
* mariadb106 (lts)
* mariadb1011 (lts)
* mariadb106 (lts)
* mariadb1011 (lts)

## Scripts

Inside the `scripts` folder you will find one-off scripts to help with tasks.

* `db_migrate.sh` - Helps migrate databases between versions of mysql.

## CLI Tooling Setup

Add the `bin` directory to your path to use **Hop** and **Git Scripts**.

## Hop

MISSING DESCRIPTION
erik-perri marked this conversation as resolved.
Show resolved Hide resolved

## Git Scripts

Custom scripts that extend Git functionality, to streamline the process of tracking tickets and managing releases

### `git-tickets`

This command is used to get the tickets since staging was last updated.
By default, it does not update the branches.

```shell
git tickets [options] [arguments]
erik-perri marked this conversation as resolved.
Show resolved Hide resolved
```

| Options | Description | Default | Any of |
|----------|-----------------------------------------------------------------|---------|--------|
| --update | Update the specified branches from the remote before comparison | | |
charlesreffett marked this conversation as resolved.
Show resolved Hide resolved

| Arguments | Description | Default | Any of |
|-----------|--------------------------------------|---------|------------|
| branch 1 | the target branch that is up to date | master | any branch |
| branch 2 | the branch that is behind | staging | any branch |

### Tickets Example

```shell
git tickets --update master staging
erik-perri marked this conversation as resolved.
Show resolved Hide resolved
```

### `git-make-release`

This command automates the process of preparing a new software release.
It creates a release branch from the current branch, increments the version number, updates the `CHANGELOG.md`

```shell
git make-release [options]
erik-perri marked this conversation as resolved.
Show resolved Hide resolved
```

| Options | Description | Default |
|---------|-----------------------------------------------------------|---------|
| --dry | Perform a dry run without any changes to branches or tags | N/A |

### Make Release Example

```shell
git make-release --dry
erik-perri marked this conversation as resolved.
Show resolved Hide resolved
```

## Docs

* [Setting up Nginx-Proxy](docs/nginx-proxy/README.md)
* [Setting up PHP Testing in PhpStorm](docs/phpstorm-docker/README.md)
* [Leveraging Yii2 Shell](docs/yii2/yii-shell.md)
92 changes: 92 additions & 0 deletions bin/git-make-release
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
#!/usr/bin/env bash

# Prompt for the version number
prompt_for_version() {
read -rp "Enter the version number (default: $1): " version
echo "${version:-$1}" # Return the entered version number or the default if none was entered
bradtoad marked this conversation as resolved.
Show resolved Hide resolved
}

# Increment version number
increment_version() {
# Split the version string into parts using read -a
IFS='.'
read -ra version_parts <<< "$1"

# Ensure that we have exactly three parts for major, minor, and patch versions
if [ ${#version_parts[@]} -ne 3 ]; then
echo "Error: Invalid version format '$1'. Expected format 'Major.Minor.Patch'." >&2
return 1 # Exit the function with an error status
fi

# Increment the minor version and reset the patch version to 0
local next_version="${version_parts[0]}.$((version_parts[1] + 1)).0"

# Call prompt_for_version, using the next version as the default
prompt_for_version "$next_version"
}

# Get the latest version tag
get_latest_version() {
git describe --tags "$(git rev-list --tags --max-count=1)" 2>/dev/null || echo "v0.0.0"
}

# Prepend the tickets to the CHANGELOG.md
prepend_to_changelog() {
local version=$1
local tickets=$2
local date

date=$(date +"%b %d, %Y")
local changelog="CHANGELOG.md"

# Create a backup of the CHANGELOG.md
cp "$changelog" "$changelog.bak"

# Prepend the new content to the CHANGELOG.md
{
echo "# v$version ($date)"
for ticket in $tickets; do
echo "* $ticket - "
done
echo ""
cat "$changelog.bak"
} > "$changelog"

rm "$changelog.bak"
}

# Check if the --dry flag is set
DRY_RUN=false
if [ "$1" == "--dry" ]; then
DRY_RUN=true
fi

# Get the latest tag and suggest the next version number
LATEST_TAG=$(get_latest_version)
NEXT_VERSION=$(increment_version "${LATEST_TAG#v}") # Assuming the tag is in the 'v1.2.3' format

if $DRY_RUN; then
# Perform a dry run
echo "This is a dry run. The release branch will not be created."
echo "The next version number would be: ${NEXT_VERSION}"
git tickets | grep -Eo '(\w+)-([0-9]+)'
else
# Perform the actual release process
# Capture the output of git-tickets
TICKETS_OUTPUT=$(git tickets --update)

# Use grep to filter the output
TICKET_IDS=$(echo "$TICKETS_OUTPUT" | grep -Eo '(\w+)-([0-9]+)')

# Prepend the tickets to the CHANGELOG.md
prepend_to_changelog "$NEXT_VERSION" "$TICKET_IDS"

# Checkout a new branch with the pattern release-###
git checkout -b "release-${NEXT_VERSION}"

# Add the CHANGELOG.md to the staging area
git add CHANGELOG.md

echo "Tickets to be included in this release:"
echo "$TICKET_IDS"
fi
75 changes: 75 additions & 0 deletions bin/git-tickets
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
#!/bin/bash
# Prompt for a branch name with a default
prompt_for_branch() {
read -rp "Enter the name of the $1 branch (default: $2): " branch
echo "${branch:-$2}" # Return the entered branch name or the default if none was entered
}

# Check for --update flag
UPDATE_BRANCHES=false
for arg in "$@"; do
if [ "$arg" == "--update" ]; then
UPDATE_BRANCHES=true
break
fi
done

# Prompt for the first branch name if not provided
if [ -z "$1" ] || [ "$1" == "--update" ]; then
BRANCH1=$(prompt_for_branch "first" "master")
else
BRANCH1="$1"
fi

# Prompt for the second branch name if not provided
if [ -z "$2" ] || [ "$2" == "--update" ]; then
BRANCH2=$(prompt_for_branch "second" "staging")
else
BRANCH2="$2"
fi
# Function to update or create temporary branches
process_branch() {
local branch_name=$1
local temp_branch="temp_${branch_name}_$$"
if $UPDATE_BRANCHES; then
git checkout "$branch_name" &> /dev/null
if ! git checkout "$branch_name" &> /dev/null; then
echo "Failed to checkout branch $branch_name" >&2
exit 1
fi
git pull origin "$branch_name" &> /dev/null
echo "$branch_name"
else
git fetch origin "$branch_name":"$temp_branch" &> /dev/null
if ! git rev-parse --verify "$temp_branch" &> /dev/null; then
echo "Failed to fetch and create temp branch for $branch_name" >&2
exit 1
fi
echo "$temp_branch"
fi
}


# Process the first branch
BRANCH1=$(process_branch "$BRANCH1")

# Process the second branch
BRANCH2=$(process_branch "$BRANCH2")

# If not updating branches, use the temporary branches for log
if ! $UPDATE_BRANCHES; then
# Run the git log command and process the output on temporary branches
git log "$BRANCH2".."$BRANCH1" --oneline --no-merges | grep -Eio "(\w+)-([0-9]+)" | tr '[:lower:]' '[:upper:]' | sort -u

# Delete the temporary branches
git branch -D "$BRANCH1" &> /dev/null
git branch -D "$BRANCH2" &> /dev/null
git status;
else
# Run the git log command and process the output on updated branches
git log "$BRANCH2".."$BRANCH1" --oneline --no-merges | grep -Eio "(\w+)-([0-9]+)" | tr '[:lower:]' '[:upper:]' | sort -u

# Checkout to the first branch (assumed to be 'master')
git checkout "$BRANCH1" &> /dev/null
git status
fi
Loading