/Code.Sessions

(っ˘▽˘)っ Because Coding is a serious Gig! ⊂(◕.◕⊂)

Primary LanguageSwift

Code.Sessions


Programming is a serious Gig!

mostly works with IDE Language Platform

Commands for Cocoapods


to install CocoaPods: sudo gem install cocoapods

create the Podfile: pod init

open the Podfile: open -a Xcode Podfile

install Podfile: pod install

Commands for Carthage


to install Carthage: choose either Homebrew or thru .pkg installer

create the Podfile: touch Cartfile

open the Podfile: open -a Xcode Cartfile

install Podfile: carthage update -- platform iOS

For New Projects:


Create new repository @BitBucket or @GitHub

cd Desktop

git clone "url"

cd "to folder or target"

git add .

git commit -m "Initial"

git push

git status

git diff

Commands for Git


git clone //projectlink

cd Desktop/projectA

git remote add upstream production link

git commit -a -m "1st commit"

git pull upstream production

:wq

git push origin

git checkout -b projectA.1

…or create a new repository on the command line echo "# BLE-ProtoType" >> README.md git init git add README.md git commit -m "first commit" git remote add origin https://github.com/Yuweh/BLE-ProtoType.git git push -u origin master …or push an existing repository from the command line git remote add origin https://github.com/Yuweh/BLE-ProtoType.git git push -u origin master

forthebadge forthebadge