(we are switching to a new theme, don't worry if things look different for a while!)

Site Navigation

Home
Search
All Pages
Recent Changes

Plans

Massive Wiki Roadmap
Pier2Pier
Massive Wiki Builder redesign

For Testing

wiki link test page
Mistletoe parser test page
Mistletoe & the ampersand story

For Fun

The Walrus

Edit This Page Clicking 'Edit This Page' opens this page on github.com. You can edit, and save changes, if you are a contributor to the repository. Close the edit page to return to this one.


2023-04-06 Bill submodule mishigas

$ git branch wla-mwb3-20230406 HEAD
$ git branch -l
* main
  pk-mistletoe-work-20230213
  pk-v2.0.0-rc-20220726
  wla-mwb3-20230406
  wla-v2.1.0-rp-20020930
$ git checkout wla-mwb3-20230406
Switched to branch 'wla-mwb3-20230406'
$ git branch -l
  main
  pk-mistletoe-work-20230213
  pk-v2.0.0-rc-20220726
* wla-mwb3-20230406
  wla-v2.1.0-rp-20020930
$ git push -u origin wla-mwb3-20230406
Total 0 (delta 0), reused 0 (delta 0), pack-reused 0
remote: Create a pull request for 'wla-mwb3-20230406' on GitHub by visiting:
remote:      https://github.com/peterkaminski/massivewikibuilder/pull/new/wla-mwb3-20230406
remote: 
To https://github.com/peterkaminski/massivewikibuilder.git
 * [new branch]      wla-mwb3-20230406 -> wla-mwb3-20230406
branch 'wla-mwb3-20230406' set up to track 'origin/wla-mwb3-20230406'.
$ git config --file=.gitmodules -l
$ git submodule set-branch -b wla-mwb3-20230406 \ .massivewikibuilder/massivewikibuilder

$ git submodule sync
$ git submodule update --init --recursive --remote

$ git add .massivewikibuilder/massivewikibuilder
$ git commit -m "new mwb3 code on a branch"
$ git push -v
$ git rev-parse HEAD
$ git rev-parse tagID
$ git rm --cached .massivewikibuilder/massivewikibuilder
error: the following file has staged content different from both the
file and the HEAD:
    .massivewikibuilder/massivewikibuilder
(use -f to force removal)
$ git rm -f --cached .massivewikibuilder/massivewikibuilder
$ rm -fr \ .git/modules/massivewikibuilder
$ git commit -m "removed submodule massivewikibuilder"

[main 2d0382c] removed submodule massivewikibuilder
 2 files changed, 4 deletions(-)
delete mode 160000 .massivewikibuilder/massivewikibuilder

$ git status  
On branch main
Your branch is ahead of 'origin/main' by 1 commit.
  (use "git push" to publish your local commits)