brew install git bash-completion
Configure things:
git config --global user.name "Your Name"
git config --global user.email "[email protected]"
#ifndef __NSLOG_ADDITIONS_H__ | |
#define __NSLOG_ADDITIONS_H__ | |
// DLog will output like NSLog only when the DEBUG variable is set | |
#ifdef DEBUG | |
# define DLog(fmt, ...) NSLog((@"%s [Line %d] " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__); | |
#else | |
# define DLog(...) | |
#endif |
#define $URL(format, ...) [NSURL URLWithFormat:format, ## __VA_ARGS__] |
#define $S(format, ...) [NSString stringWithFormat:format, ## __VA_ARGS__] |
brew install git bash-completion
Configure things:
git config --global user.name "Your Name"
git config --global user.email "[email protected]"