Skip to content

Latest commit

 

History

History
96 lines (81 loc) · 4.44 KB

README-GIT.md

File metadata and controls

96 lines (81 loc) · 4.44 KB

Pi Engine Github Usage

Notes:

  • upstream: Pi Engine Repo at https://github.com/pi-engine/pi
  • origin or your repo: the repo you create by forking Pi Engine at https://github.com/<your-account>/pi
  • local repo: the working repo you clone from your repo

Checkout from Pi Engine project (readonly)

  • Clone without submodules: git clone git://github.com/pi-engine/pi
  • Clone with submodules: git clone --recursive git://github.com/pi-engine/pi

Make a new fork

Working with forked repo

  • Checkout code to local computer as working repo: git clone https://github.com/<your-account>/pi
  • Working with commits
    • Synchronize code from your repo: git pull or git fetch
    • Add local changes: git add --all
    • Commit local changes: git commit -a -m 'Commit log message.'
    • Push commits to your repo: git push
    • Revert the last commit before push: git reset --soft HEAD
    • Merge one specific commit from another branch: git cherry-pick A
    • Merge specific commits after A to B: git cherry-pick A..B
    • Merge specific commits from A through B: git cherry-pick A^..B
    • Quit merges: git quit --merge
    • Stash (Hide changes temporarily): git stash
  • Working with branches
    • Check local branches: git branch
    • Create a local branch: git branch -a <new-branch>
    • Push a local branch to your repo: git push
    • Switch to a branch: git checkout <another-branch>
    • Merge code from another branch: git merge <another-branch>
    • Clone a remote branch to local: git branch --set-upstream-to=origin/<remote-branch> <local-branch>
    • Delete a local branch: git branch -d <old-branch>
    • Delete a branch from your remote repo: git push origin :<old-branch>
  • Working with tags
    • Check local branches: git tag
    • Create a local branch: git tag -a <new-tag>
    • Push local tags to your repo: git push --tags
    • Delete a local branch: git tag -d <old-tag>
    • Delete a tag from your repo: git push origin :<old-tag>

Working with upstream repo

  • Add Pi Engine Repo as upstream: git remote add upstream https://github.com/pi-engine/pi.git
  • Fetch changes from Pi Engine Repo: git fetch upstream
  • Merge Pi Engine changes into local repo: git merge upstream/<branch-name>
  • Synchronize your repo with Pi Engine Repo: git merge upstream/<branch-name> + git push origin <branch-name>

Build Your Private Repo Upon Pi Engine

  1. Create your private repo
  2. Create a branch pi and set up remote upstream: git remote add upstream https://github.com/pi-engine/pi.git
  3. Fetch changes from Pi Engine Repo: git fetch upstream
  4. Merge Pi Engine changes into local repo: git merge upstream/develop for latest dev or git merge upstream/master for stable code
  5. Switch back to your dev branch master: git checkout master
  6. Merge Pi into our dev branch master: git merge pi
  7. Create module folders and/or theme folders in dev branch
  8. Keep synchronizing your repo with Pi Engine repo

Pi Engine Github Skeleton

Pi Engine Core

Pi Engine Module

Pi Engine Theme

  • pi-theme: repos for themes
  • Each theme has its own repo, for instance pi-theme/pi for theme pi

Pi Engine Asset

Pi Engine Extras