技術と本について書くブログ

技術と本について書くblog。技術メモなど雑記を書いているblog。

2019-03-28から1日間の記事一覧

Apple Business Managerについて

mac

Apple Business Managerとは Apple Development Programからアップグレードできる 組織のモバイルデバイス管理 (MDM)や一括でアプリのインストールが可能 AirWatchからのアプリインストールなどでは管理者から強制的に入れられる訳ではない。これを実行する…

Gitignore_globalで全プロジェクトに対して余計なファイルを上げないようにする

Git

まず、gitcongigを編集 vim ~/.gitconfig [user] name = myName email = hogehoge@foo.com [core] excludesfile = /Users/Username/.gitignore_global その後、gitignore_globalを編集 vim ~/.gitignore_global .DS_Store .vscode/*