5
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

金をかけずにiPad(iPhone)でgitしたい

Last updated at Posted at 2021-02-05

普段github pagesをMacでいじってる人が
iPadでgit+αできる環境を整えたときのメモです
#アプリ一覧
シェル
ish Alpineのエミュレータ

(ここから先はなくても大丈夫)

エディタ
kodex

ファイル管理系
ファイル(デフォルト)
documents

#メモ
##gitとpythonのインストール
$ apk add git
$ apk add python3

...OK
の表示が出たらインストール成功
...error
が出た場合はもう一度apk addする

##githubからクローン
ファイルアプリ > ish > rootがホームディレクトリ
OAuthについては勉強中

$ git clone https://github.com/[user]/[repo].git
128F0566-C8B0-4BF4-9C23-B2C684E23862.png

##ローカルサーバー
$ python3 -m http.server [port]

デフォルトのポートは8000
safariからlocalhost:8000でアクセスできる
ポート番号を指定しないでアクセスしたい場合[port]=80
同じローカル回線に繋いでいる端末からならiPアドレスを指定してアクセスできる

終了したい場合は ^C (ctrl-c)
82DACFB8-212C-40B6-98B0-8B67DB80965F.png

##追加→コミット→プッシュ
$ git add .
$ git commit -m "update some files"
$ git push origin [branch]

##リモートの変更を確認→ローカルに適用
$ git fetch
$ git pull
B5BBE082-CE69-40AA-AEE7-31D8522AC8BC.png

5
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?