Git使いになろう:ひとりで使う(7:以前のある時点まで戻す)

ここまでで一つ前のコミットまで戻す方法を紹介しましたが、以前のある時点まで一気に戻す方法もあります。

$ git --no-pager log
commit 8a044cddf697531e560077c05f2939609607ffb1
Author: tomohiro <tomohiro@example.com>
Date:   Thu Mar 10 18:09:04 2016 +0900

    add description

commit ee8831f07fcd5007816ef6e75682b826659a79cd
Author: tomohiro <tomohiro@example.com>
Date:   Fri Jan 1 20:51:25 2016 +0900

    add URL
    
    add the URL of the Ragtimeblues

commit ab374c5f64e3de33b079b9e013ac2cec7830935d
Author: tomohiro <tomohiro@example.com>
Date:   Fri Jan 1 16:57:09 2016 +0900

    first commit

という状態のときに、二つ前のコミットまで一気に戻すには、コミットハッシュ値を指定してgit resetを実行します。コミットハッシュ値とはログメッセージ中のcommitに続く文字列です。上記の例だとab374c5f64e3de33b079b9e013ac2cec7830935dになりますが、一意に特定できればよいので通常は先頭の7文字程度を指定します。

$ git reset --hard ab374c5
HEAD is now at ab374c5 first commit
$ git status
On branch master
nothing to commit, working directory clean
$ git --no-pager log
commit ab374c5f64e3de33b079b9e013ac2cec7830935d
Author: tomohiro <tomohiro@example.com>
Date:   Fri Jan 1 16:57:09 2016 +0900

    first commit

と、一気にab374c5のコミットまで戻せました。

楽譜を作成するソフト

楽譜を作成するフリーのソフトはいくつかありますが、僕はLilyPondLilyPondというソフトを好んで使っています。

GUIで楽譜を書くソフトが多いなか、LilyPondはテキストファイルとして作成したファイルをコンパイルすることで楽譜を作ります。簡単なものから複雑なものまで、高品位な楽譜を作ることができます。UNIX系のOS(GNU/LinuxやFree BSD)、MacOS X、Microsoft Windowsで使えます。機会があれば書き方の紹介などもしていきたいと思います。

EmacsでOSの違いを判定する変数

Emacsの設定ファイルでOSによって設定を変えたい場合は、
system-typeという変数を使います。

system-typeの値は
`gnu’ compiled for a GNU Hurd system.
`gnu/linux’ compiled for a GNU/Linux system.
`gnu/kfreebsd’ compiled for a GNU system with a FreeBSD kernel.
`darwin’ compiled for Darwin (GNU-Darwin, Mac OS X, …).
`ms-dos’ compiled as an MS-DOS application.
`windows-nt’ compiled as a native W32 application.
`cygwin’ compiled using the Cygwin library.
という値になりますので、例えば

(if (eq system-type 'gnu/linux)
    (load "~/.emacs.d/.gnu-linux.emacs")
)

とすれば、GNU/Linuxの場合のみの設定ができます。