There are 2 ways to do that
$ git checkout master
$ git pull
$ git reset --hard tag_ABC| name: Latest blog post profile workflow manual | |
| on: | |
| workflow_dispatch: | |
| jobs: | |
| update-readme-with-blog: | |
| name: Update this repo's README with latest blog posts | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: gautamkrishnar/blog-post-workflow@master |
| name: Latest blog post workflow every hour | |
| on: | |
| schedule: | |
| - cron: '0 * * * *' | |
| jobs: | |
| update-readme-with-blog: | |
| name: Update this repo's README with latest blog posts | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 |
| //Define the gateway application | |
| application { | |
| config { | |
| baseName gateway, | |
| applicationType gateway, | |
| packageName com.mamazinha.gateway, | |
| authenticationType jwt, | |
| prodDatabaseType postgresql, | |
| clientFramework angularX, | |
| serviceDiscoveryType eureka, |
| [user] | |
| email = your_email | |
| name = your_username | |
| [alias] | |
| # view your global git config Aliases from CLI | |
| aliases = config --get-regexp '^alias\\.' | |
| # git clone | |
| cl = !git clone | |
| # Git shallow clone for large repos | |
| clq= !git clone --depth=1 |
| #!/bin/bash | |
| function sdkj() { | |
| if [ "$1" == "" ]; then | |
| echo "Expected Version prefix" | |
| exit 1 | |
| fi | |
| PREFIX=$1 | |
| CONTAINS=$2 | |
| # list candidates in the order they were installed. Last matching installed will be selected. | |
| CANDIDATES=$(ls -tr ~/.sdkman/candidates/java/) |
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
The SPARC Automated Development System (claude-sparc.sh) is a comprehensive, agentic workflow for automated software development using the SPARC methodology (Specification, Pseudocode, Architecture, Refinement, Completion). This system leverages Claude Code's built-in tools for parallel task orchestration, comprehensive research, and Test-Driven Development.