GNU Emacs30.0.50に含まれるjava/INSTALL
にしたがって取得したlibgmpモジュール(gnutlsの依存モジュール)のレポジトリ。
$: wget https://sourceforge.net/projects/android-ports-for-gnu-emacs/files/gmp-6.2.1-emacs.tgz
$: tar xvfz gmp-6.2.1-emacs.tgz
- gitレポジトリとして初期化し修正用ブランチ
my/master
をcheckout
$: cd gmp-6.2.1
$: git init
$: git checkout -b my/master
- ビルド用空ディレクトリを維持するために
.gitignore
を追加(How do I add an empty directory to a Git repository?を参照)
$: for mydir in &(find . -type d -name dummy)
> do
> cat <<EOS > $mydir/.gitignore
# Ignore everything in this directory
*
# Except this file
!.gitignore
EOS
> done
- 追加したファイルファイルをcommitして空レポジトリにpush
$: git add -A
$: git commit -m 'nanika commit messages...'
$: gh repo create my-gmp-6.2.1 --public
$: git remote add mine https://github.com/JIBUN/my-gmp-6.2.1.git
$: git branch -M my/master
$: git push -u mine my/master