-
Notifications
You must be signed in to change notification settings - Fork 1
Nice Extras On iOS
Xanthia edited this page Sep 9, 2025
·
5 revisions
- To use git features on your iOS device
- Download from the App Store https://apps.apple.com/sg/app/working-copy-git-client/id896694807
- Setup Identities with Signing Key
- Login to GitHub (or where your repositories are)
- Clone a repository (I cloned LOVE-on-iOS)
- Read more at https://forum.obsidian.md/t/mobile-setting-up-ios-git-based-syncing-with-mobile-app-using-working-copy/16499
- To use git features and other linux command line tools on your iOS device
- Download from the App Store https://apps.apple.com/sg/app/ish-shell/id1436902243
- First time set up
- Update Alpine repos: apk update
- Install git: apk add git
- Create a directory in your home directory: cd ~ && mkdir nameofdirectory
- Mount your local folder into directory: Run mount -t ios . nameofdirectory
- Clone your git repository: cd nameofdirectory
- Clone your git reposirory: git clone .
- To push changes
- while in nameofdirectory: git status
- First time Set username: git config user.name
- First time Set e-mail address: git config user.email "[email protected]"
- You may need to use a Personal Access Token, read more...
- Add all files into the commit: git add .
- Commit: git commit -m "Commit comments"
- Push: git push
- To pull changes
- Bring remote refs up to date: git remote update
- Check status: git status
- Update from the remote repo: git pull