apt-cyg install git
apt-cyg install make
apt-cyg install autoconf
apt-cyg install gcc-core
apt-cyg install zlib-devel
apt-cyg install libiconv
apt-cyg install libiconv-devel
git clone git://github.com/git/git.git
cd git/
make configure
./configure --prefix=/usr/local
make all
make install
http://subtech.g.hatena.ne.jp/motemen/20120917/1347889804でbrowse-remoteが紹介されています。それを加えてい、以下の便利な alias も紹介されているので備忘として引用させて頂きます。
<--more-->
[alias]
# http://oli.jp/2012/git-powerup/
# http://blog.blindgaenger.net/advanced_git_aliases.html
alias = !git config --list | grep 'alias\\.' | sed 's/alias\\.\\([^=]*\\)=\\(.*\\)/\\1\\\t => \\2/' | sort
b = branch -a
br = browse-remote
ci = commit
co = checkout
d = diff
dc = diff --cached
di = diff
dic = diff --cached
f = fetch --prune
fs = !git f && git su
ignore = !([ ! -e .gitignore ] && touch .gitignore) | echo $1 >> .gitignore
info = remote show origin
l = log --graph -n 20 --pretty=format:'%C(yellow)%h%C(cyan)%d%Creset %s %C(green)- %an, %cr%Creset'
ll = log --stat --abbrev-commit
ln = log --graph -n 20 --pretty=format:'%C(yellow)%h%C(cyan)%d%Creset %s %C(green)- %an, %cr%Creset' --name-status
lp = log --oneline -n 20 -p
ls = log --stat --abbrev-commit -n 1 # display previous log
s = status --short --branch
st = status
su = submodule update
WWDC振り返り勉強会の資料をまとめておきます。
NAD情報は無しで以下の公開情報をもとに報告がされてました。
WWDC2014 これだけ押さえておけば間違い無し!おすすめセッションTOP10
(続きを読む…)
Gradle, please
http://gradleplease.appspot.com/
以下のライブラリのdependenciesの記載方法が簡単にわかります。(2014/06/21時点)
- gson
- actionbarsherlock
- joda-time
- picasso
- otto
- slf4j
- crouton
- nineoldandroids
- butterknife
- guava
- okhttp
- dagger
対象を同時に削除する場合
ファイルの場合
git rm -f app/app.iml
フォルダの場合
git rm -rf app/build/
対象をローカルに保持したまま、git管理対象から削除する場合
ファイルの場合
git rm --cached -f app/app.iml
フォルダの場合
git rm --cached -rf app/build/