Skip to content

Instantly share code, notes, and snippets.

View lixuanh's full-sized avatar
🏠
Working from home

Hai lixuanh

🏠
Working from home
View GitHub Profile
@tensonohikari
tensonohikari / AbstractAuthTask.java
Created April 7, 2015 22:13
Drive REST API, authorization flow
// Base auth task
public abstract class AbstractAuthTask extends AsyncTask<Void, Void, Void> {
protected final AuthorizationFlow mAuthFlow;
AbstractAuthTask(final AuthorizationFlow authFlow) {
mAuthFlow = authFlow;
}
}
@uasi
uasi / git-svn.markdown
Last active January 16, 2025 09:28
git-svn の使い方メモ

git-svn の使い方メモ

git-svn の使い方をメモする。他によいプラクティスがあれば指摘していただけるとありがたい。

用語

SVN のブランチと git のブランチが混在しているため、ここではブランチという語を以下のように区別する。

  • ブランチ、 SVN ブランチ:$SVN_REPO/branches 以下にあるディレクトリ
  • ローカルブランチ:git のローカルブランチ
  • リモートブランチ:git のリモートブランチ