* Add to loadup and medley scripts a --branch argument whereby which loadup outputs are stored in MEDLEYDIR/loadups/branches/BRANCH, where BRANCH is the name of the currently active git branch of MEDLEYDIR (for loadup) or the name of a BRANCH whereby which a loadup had been run with the --branch option (for medley). Man pages updated accordingly. * Removed --git-branch synonym for --branch from both medley and loadup scripts. Added optional BRANCH argument to --branch in loadup script. If BRANCH is specified iot is used as the (pseudo)branch name instead of the current active git branch of MEDLEYDIR. If BRANCH is "-", the current git branch name is used. * When doing loadups, a file called gitinfo is created in the LOADUP_OUTDIR that contains the git commit, git branch and git status of MEDLEYDIR at the time of the loadup. Branch names in loadup and medley scripts now contain only alphanumerics, dahes, underscores, periods. Any other character is coerced to underscore. The branch name is now included in the window title. * Incorporate changes from PR#2208: Use the loadup step script names as the --id string. * Add loadups/gitinfo and loadups/branches to .gitignore
73 lines
986 B
Plaintext
73 lines
986 B
Plaintext
# loadup interim steps
|
|
|
|
tmp/*
|
|
|
|
# releases directory
|
|
releases/*
|
|
|
|
# maiko directory
|
|
maiko/
|
|
|
|
|
|
# all PDFs (those explicitly checked in aren't ignored
|
|
# normally when you have derived files, you ignore them from git
|
|
# because they will get regenerated when you rebuild.
|
|
# MEDLEY-UTILS HCFILES regenerates
|
|
# index.html files are also produced by HCFILES
|
|
*.pdf
|
|
index.html
|
|
|
|
|
|
# all loadup files
|
|
|
|
loadups/exports.all
|
|
library/RDSYS*
|
|
loadups/lisp.sysout
|
|
loadups/full.sysout
|
|
# not currently included but might as well ignore it
|
|
loadups/fuller.sysout
|
|
loadups/*.dribble
|
|
loadups/whereis.hash
|
|
loadups/apps.sysout
|
|
loadups/fuller.database
|
|
loadups/build/
|
|
loadups/branches
|
|
loadups/gitinfo
|
|
|
|
|
|
# manual cross-reference files
|
|
|
|
*.IMPTR
|
|
|
|
# (Accidentally) created sysouts at any level
|
|
*.sysout
|
|
*.SYSOUT
|
|
|
|
#compiled code -- leave in for now
|
|
|
|
# *.lcom
|
|
# *.LCOM
|
|
# *.dfasl
|
|
# *.DFASL
|
|
|
|
# older versions
|
|
|
|
*~
|
|
|
|
# emacs detritus
|
|
*\#
|
|
\.\#*
|
|
|
|
# core files
|
|
|
|
core
|
|
|
|
# Mac OS detritus
|
|
.DS_Store
|
|
*.PS
|
|
|
|
# nano detritus
|
|
*.swp
|
|
*.save
|
|
|