Giter VIP home page Giter VIP logo

settings's Introduction

settings

My tools & settings that I use in iOS Development

Auto-increment build number script:

#!/bin/bash
buildNumber=$(/usr/libexec/PlistBuddy -c "Print CFBundleVersion" "$INFOPLIST_FILE")
buildNumber=$(($buildNumber + 1))
/usr/libexec/PlistBuddy -c "Set :CFBundleVersion $buildNumber" "$INFOPLIST_FILE"

Add existing project to git:

git init
git add .
git commit -m “First commit”
git remote add origin <remote respository URL>
git remote -v
git push origin master

Add .gitignore to an existing project:

Commit all pending changes, then run this command:

git rm -r --cached .
This removes everything from the index, then just run:

git add .
Commit it:

git commit -m ".gitignore is now working"

#Terminal#

iTerm2 : https://www.iterm2.com/

oh-my-zsh : https://github.com/robbyrussell/oh-my-zsh

Theme : agnoster (add ZSH_THEME=agnoster in your .zshrc file in your home folder --->>> /Users/user_name)

Solarized Dark Theme:

Download and unzip the latest version of the Solarized .zip file (it contains the iTerm2 preset files you’ll need):

http://ethanschoonover.com/solarized/files/solarized.zip

In iTerm2, open “iTerm2 > Preferences > Profiles > Colors”, and click “Load Presets…” to load the Solarized color schemes (light and dark) that are found in the .zip in “solarized/iterm2-colors-solarized/”

For more info see the iTerm2 README from solarized.zip - the path to it in the zip file is:

solarized/iterm2-colors-solarized/README.md

Font : Menlo for Powerline size 14 for Regular Font and use Anonymice Powerline 12pt for Prefs > Profiles > Text > Non-ASCII Font https://github.com/abertsch/Menlo-for-Powerline

Install Z : https://gist.github.com/mischah/8149239

settings's People

Contributors

danipralea avatar

Watchers

James Cloos avatar

settings's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.