Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
8BFC82BF1F56C15C006DF67C /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 8BFC82BD1F56C15C006DF67C /* Main.storyboard */; };
8BFC82C11F56C15C006DF67C /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 8BFC82C01F56C15C006DF67C /* Assets.xcassets */; };
8BFC82C41F56C15C006DF67C /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 8BFC82C21F56C15C006DF67C /* LaunchScreen.storyboard */; };
8BFC82CC1F56CD07006DF67C /* TestingClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8BFC82CB1F56CD07006DF67C /* TestingClass.swift */; };
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
Expand All @@ -22,6 +23,7 @@
8BFC82C01F56C15C006DF67C /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
8BFC82C31F56C15C006DF67C /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
8BFC82C51F56C15C006DF67C /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
8BFC82CB1F56CD07006DF67C /* TestingClass.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TestingClass.swift; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
Expand All @@ -38,6 +40,7 @@
8BFC82AD1F56C15C006DF67C = {
isa = PBXGroup;
children = (
8BFC82CB1F56CD07006DF67C /* TestingClass.swift */,
8BFC82B81F56C15C006DF67C /* Testing my git commands */,
8BFC82B71F56C15C006DF67C /* Products */,
);
Expand Down Expand Up @@ -139,6 +142,7 @@
files = (
8BFC82BC1F56C15C006DF67C /* ViewController.swift in Sources */,
8BFC82BA1F56C15C006DF67C /* AppDelegate.swift in Sources */,
8BFC82CC1F56CD07006DF67C /* TestingClass.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down Expand Up @@ -302,6 +306,7 @@
8BFC82CA1F56C15C006DF67C /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ class ViewController: UIViewController {


print("Hello world")

print("this is part of the second commit")

print("I'm adding another line for this commit")



Expand Down
27 changes: 27 additions & 0 deletions Testing my git commands/TestingClass.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
//
// TestingClass.swift
// Testing my git commands
//
// Created by Ruben Garcia on 8/30/17.
// Copyright © 2017 Ruben Garcia. All rights reserved.
//

import UIKit

class TestingClass: UIViewController {

override func viewDidLoad() {
super.viewDidLoad()


print("Is just to make tests")


}






}