This guide on how to convert an SVN repository to a git repository was mostly taken from John Albin Wilkins post on Converting a Subversion repository to Git.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // TransitionController.h | |
| // | |
| // Created by XJones on 11/25/11. | |
| // | |
| #import <UIKit/UIKit.h> | |
| @interface TransitionController : UIViewController |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @interface UIImage (fixOrientation) | |
| - (UIImage *)fixOrientation; | |
| @end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/perl | |
| # | |
| # Pre-commit hook for running checkstyle on changed Java sources | |
| # | |
| # To use this you need: | |
| # 1. checkstyle's jar file somewhere | |
| # 2. a checkstyle XML check file somewhere | |
| # 3. To configure git: | |
| # * git config --add checkstyle.jar <location of jar> | |
| # * git config --add checkstyle.checkfile <location of checkfile> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // UIImage+Cache.m | |
| // | |
| // Created by Mark on 6/6/12. | |
| // Copyright (c) 2012 skram devs LLC. All rights reserved. | |
| // http://skr.am | |
| #import <UIKit/UIKit.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package in.mobilelin.smartbar; | |
| import java.lang.reflect.Field; | |
| import java.lang.reflect.InvocationTargetException; | |
| import java.lang.reflect.Method; | |
| import android.app.ActionBar; | |
| import android.content.Context; | |
| import android.content.res.Configuration; | |
| import android.os.Build; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public enum HttpHeader { | |
| AUTHORIZATION("Authorization"), | |
| AUTHENTICATION_TYPE_BASIC("Basic"), | |
| X_AUTH_TOKEN("X-AUTH-TOKEN"), | |
| WWW_Authenticate("WWW-Authenticate"), | |
| X_FORWARDED_FOR("X-Forwarded-For"), | |
| PROXY_CLIENT_IP("Proxy-Client-IP"), | |
| WL_PROXY_CLIENT_IP("WL-Proxy-Client-IP"), | |
| HTTP_CLIENT_IP("HTTP_CLIENT_IP"), | |
| HTTP_X_FORWARDED_FOR("HTTP_X_FORWARDED_FOR"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| import subprocess | |
| import sys | |
| import tempfile | |
| import shutil | |
| import os | |
| import errno | |
| # variables for checkstyle |
OlderNewer