Skip to content

Nice Extras On iOS

Xanthia edited this page Sep 9, 2025 · 5 revisions

Nice Extras On iOS

Helpful Free Apps To Download

Working Copy

iSH Shell

  1. Update Alpine repos: apk update
  2. Install git: apk add git
  3. Create a directory in your home directory: cd ~ && mkdir nameofdirectory
  4. Mount your local folder into directory: Run mount -t ios . nameofdirectory
  5. Clone your git repository: cd nameofdirectory
  6. Clone your git reposirory: git clone .
  • To push changes
  1. while in nameofdirectory: git status
  2. First time Set username: git config user.name
  3. First time Set e-mail address: git config user.email "[email protected]"
  4. You may need to use a Personal Access Token, read more...
  5. Add all files into the commit: git add .
  6. Commit: git commit -m "Commit comments"
  7. Push: git push
  • To pull changes
  1. Bring remote refs up to date: git remote update
  2. Check status: git status
  3. Update from the remote repo: git pull

Clone this wiki locally