Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bulletin
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Personal Projects
bulletin
Commits
b9b813f7
Project 'kevin/bulletin' was moved to 'pp/bulletin'. Please update any links and bookmarks that may still have the old path.
Commit
b9b813f7
authored
Jan 30, 2016
by
Kevin Lyda
Browse files
Options
Downloads
Patches
Plain Diff
More discussion in the README.
parent
3a5b3c4e
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+25
-0
25 additions, 0 deletions
README.md
with
25 additions
and
0 deletions
README.md
+
25
−
0
View file @
b9b813f7
...
@@ -59,6 +59,11 @@ make the repo. A number of things had to be done to get them ready for
...
@@ -59,6 +59,11 @@ make the repo. A number of things had to be done to get them ready for
a proper historical source code archive. The commit logs for this repo
a proper historical source code archive. The commit logs for this repo
cover those steps, but to explain in a bit more detail:
cover those steps, but to explain in a bit more detail:
### Dependencies
The shell snippets assume zsh (the
`**/*.ext`
idiom gets used a lot).
Need a
`gcc`
toolchain. Need the
`unzip`
and
`zoo`
utilities.
### File conversions
### File conversions
Some files are in VMS record formats. These are handled by
Some files are in VMS record formats. These are handled by
...
@@ -74,6 +79,26 @@ into mbox files.
...
@@ -74,6 +79,26 @@ into mbox files.
Within the zip files there are sometimes other archive files.
Within the zip files there are sometimes other archive files.
These had to be extracted.
These had to be extracted.
For .zoo files:
```
for f in **/*.zoo; do
(cd ${f%\/*} && zoo -extract ${f##*\/} && git rm ${f##*\/});
done
```
For .zip files:
```
for f in **/*.zip; do
(cd ${f%\/*} && unzip ${f##*\/} && git rm ${f##*\/});
done
```
### General cleanup
*
Removed exe and obj files:
`git rm **/*.{exe,obj}`
### Committing to the BULLETIN git repo
### Committing to the BULLETIN git repo
To get the right dates and authors in git, need to tweak these environment
To get the right dates and authors in git, need to tweak these environment
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment