<html><head><meta http-equiv="Content-Type" content="text/html charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div class="">Cloning these example-package-* repos and then filing pull requests for them is problematic because the github username “apple” is burned into the dependency urls in the Package.swift files.</div><div class=""><br class=""></div><div class="">It would be good if these packages would take a build-time argument for the github username, defaulting to “apple”. I thought this would do it, but it doesn’t work:</div><div class=""><br class=""></div><blockquote style="margin: 0 0 0 40px; border: none; padding: 0px;" class=""><div class=""><div class="">import Foundation</div></div><div class=""><div class=""><br class=""></div></div><div class=""><div class="">let githubUserVarName = "GITHUB_USER"</div></div><div class=""><div class="">let env = ProcessInfo.processInfo().environment</div></div><div class=""><div class="">let githubUser = env[githubUserVarName] ?? "apple"</div></div><div class=""><div class="">print("env[\"\(githubUserVarName)\"] is \(env[githubUserVarName])")</div></div><div class=""><div class=""><br class=""></div></div><div class=""><div class=""><br class=""></div></div><div class=""><div class="">import PackageDescription</div></div><div class=""><div class=""><br class=""></div></div><div class=""><div class="">let package = Package(</div></div><div class=""><div class="">&nbsp; &nbsp; name: "Dealer",</div></div><div class=""><div class="">&nbsp; &nbsp; dependencies: [</div></div><div class=""><div class="">&nbsp; &nbsp; &nbsp; &nbsp; .Package(url: "<a href="https://github.com/" class="">https://github.com/</a><b class="">\(githubUser)</b>/example-package-deckofplayingcards.git", majorVersion: 1),</div></div><div class=""><div class="">&nbsp; &nbsp; ]</div></div><div class=""><div class="">)</div></div><div class=""><br class=""></div><div class=""><div class="">/*</div></div><div class=""><div class="">&nbsp;This source file is part of the <a href="http://swift.org" class="">Swift.org</a> open source project</div></div><div class=""><div class=""><br class=""></div></div><div class=""><div class="">&nbsp;Copyright 2015 Apple Inc. and the Swift project authors</div></div><div class=""><div class="">&nbsp;Licensed under Apache License v2.0 with Runtime Library Exception</div></div><div class=""><div class=""><br class=""></div></div><div class=""><div class="">&nbsp;See <a href="http://swift.org/LICENSE.txt" class="">http://swift.org/LICENSE.txt</a> for license information</div></div><div class=""><div class="">&nbsp;See <a href="http://swift.org/CONTRIBUTORS.txt" class="">http://swift.org/CONTRIBUTORS.txt</a> for Swift project authors</div></div><div class=""><div class="">*/</div></div></blockquote><div class=""><br class=""></div><div class="">and then invoke like this:</div><div class=""><br class=""></div><blockquote style="margin: 0 0 0 40px; border: none; padding: 0px;" class=""><div class="">GITHUB_USER=daveyostcom &nbsp; swift build</div></blockquote><div class=""><br class=""></div><div class="">but for some reason only a few environment variables are visible in the env dictionary. The GITHUB_USER environment variable is not among them.</div><div class=""><br class=""></div><div class="">Seems like a bug against “swift build”. Yes?</div><div class=""><br class=""></div><div class=""><br class=""></div><div><blockquote type="cite" class=""><div class="">On 2016-06-29, at 11:26 PM, Daniel Dunbar &lt;<a href="mailto:daniel_dunbar@apple.com" class="">daniel_dunbar@apple.com</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><meta http-equiv="Content-Type" content="text/html charset=utf-8" class=""><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">I wouldn't say they are "unclean", but they have not been retagged after the latest commits to them, and you are right they probably should be. Feel free to file a bug on this at <a href="http://bugs.swift.org/" class="">http://bugs.swift.org</a>.</div></div></blockquote><div><br class=""></div>Done.</div><div><br class=""><blockquote type="cite" class=""><div class=""><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div class=""><br class=""></div><div class="">&nbsp;- Daniel</div><div class=""><br class=""><div class=""><blockquote type="cite" class=""><div class="">On Jun 29, 2016, at 11:25 PM, Dave Yost &lt;<a href="mailto:Dave@yost.com" class="">Dave@Yost.com</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><meta http-equiv="Content-Type" content="text/html charset=utf-8" class=""><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">Dumb questions:<div class=""><br class=""></div><div class="">These repos are not clean, tho, right? The head should be tagged with a version number, right?</div><div class=""><div class="">
</div>
<br class=""><div class=""><blockquote type="cite" class=""><div class="">On 2016-06-29, at 7:56 PM, Daniel Dunbar &lt;<a href="mailto:daniel_dunbar@apple.com" class="">daniel_dunbar@apple.com</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><meta http-equiv="Content-Type" content="text/html charset=utf-8" class=""><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">FYI, some of our planned workflow improvements here are covered by:<div class="">&nbsp;&nbsp;<a href="https://github.com/apple/swift-evolution/blob/master/proposals/0082-swiftpm-package-edit.md" class="">https://github.com/apple/swift-evolution/blob/master/proposals/0082-swiftpm-package-edit.md</a></div><div class=""><br class=""><div class="">&nbsp;- Daniel</div><div class=""><br class=""><div class=""><blockquote type="cite" class=""><div class="">On Jun 29, 2016, at 7:11 PM, Hugo Hennies via swift-users &lt;<a href="mailto:swift-users@swift.org" class="">swift-users@swift.org</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><meta http-equiv="Content-Type" content="text/html charset=utf-8" class=""><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">The swift package manager uses git tags to resolve the commit it’s going to get. So if you want to make your changes available to the package manager, you must tag your latest commit with a semantic versioning number (1.0.3 for instance) and explicitly put that as the version you want to fetch in your Package.swift file.<div class=""><br class=""></div><div class="">You can find more information on the swift project website</div><div class=""><a href="https://swift.org/package-manager/" class="">https://swift.org/package-manager/</a></div><div class=""><br class=""></div><div class="">—H</div><div class=""><br class=""><div class=""><blockquote type="cite" class=""><div class="">On Jun 29, 2016, at 10:43 PM, Dave Yost via swift-users &lt;<a href="mailto:swift-users@swift.org" class="">swift-users@swift.org</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><meta http-equiv="Content-Type" content="text/html charset=utf-8" class=""><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div class="">Following the example here:</div><div class=""><a href="https://swift.org/package-manager/#conceptual-overview" class="">https://swift.org/package-manager/#conceptual-overview</a></div><div class=""><br class=""></div><div class="">When I do “swift build”, as expected the dependencies are downloaded into the Packages/ subfolder. I expect them to all be up to date, but they are all behind their origin/master repos. Why?</div><div class=""><br class=""></div><div class="">This is really a problem when I clone theses 4 projects and modify the dependencies to point to my clones. When I do that, the DeckOfPlayingCards project doesn’t download with my changes.</div><br class=""><div class=""><div style="margin: 0px; font-size: 8.5px; line-height: normal; font-family: Menlo; color: rgb(255, 207, 130); background-color: rgb(4, 22, 16);" class=""><span style="font-variant-ligatures: no-common-ligatures; color: #ffffff" class="">0 </span><span style="font-variant-ligatures: no-common-ligatures" class="">Wed 18:30:30 yost DaveBook ~/p/swift</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; font-family: Menlo; color: rgb(179, 254, 255); background-color: rgb(4, 22, 16);" class=""><span style="font-variant-ligatures: no-common-ligatures; color: #ffcf82" class="">421 Z% </span><span style="font-variant-ligatures: no-common-ligatures" class="">git clone git@github.com:apple/example-package-dealer.git</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; font-family: Menlo; color: rgb(255, 255, 255); background-color: rgb(4, 22, 16);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">Cloning into 'example-package-dealer'...</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; font-family: Menlo; color: rgb(255, 255, 255); background-color: rgb(4, 22, 16);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">remote: Counting objects: 21, done.</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; font-family: Menlo; color: rgb(255, 255, 255); background-color: rgb(4, 22, 16);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">remote: Total 21 (delta 0), reused 0 (delta 0), pack-reused 21</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; font-family: Menlo; color: rgb(255, 255, 255); background-color: rgb(4, 22, 16);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">Receiving objects: 100% (21/21), 7.03 KiB | 0 bytes/s, done.</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; font-family: Menlo; color: rgb(255, 255, 255); background-color: rgb(4, 22, 16);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">Resolving deltas: 100% (8/8), done.</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; font-family: Menlo; color: rgb(255, 255, 255); background-color: rgb(4, 22, 16);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">Checking connectivity... done.</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; font-family: Menlo; color: rgb(255, 207, 130); background-color: rgb(4, 22, 16);" class=""><span style="font-variant-ligatures: no-common-ligatures; color: #ffffff" class="">0 </span><span style="font-variant-ligatures: no-common-ligatures" class="">Wed 18:30:40 yost DaveBook ~/p/swift</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; font-family: Menlo; color: rgb(179, 254, 255); background-color: rgb(4, 22, 16);" class=""><span style="font-variant-ligatures: no-common-ligatures; color: #ffcf82" class="">422 Z% </span><span style="font-variant-ligatures: no-common-ligatures" class="">cd example-package-dealer</span><span style="font-variant-ligatures: no-common-ligatures; color: #ffffff" class="">&nbsp;</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; font-family: Menlo; color: rgb(255, 207, 130); background-color: rgb(4, 22, 16);" class=""><span style="font-variant-ligatures: no-common-ligatures; color: #ffffff" class="">0 </span><span style="font-variant-ligatures: no-common-ligatures" class="">Wed 18:30:42 yost DaveBook ~/p/swift/example-package-dealer</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; font-family: Menlo; color: rgb(179, 254, 255); background-color: rgb(4, 22, 16);" class=""><span style="font-variant-ligatures: no-common-ligatures; color: #ffcf82" class="">423 Z% </span><span style="font-variant-ligatures: no-common-ligatures" class="">swift build</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; font-family: Menlo; color: rgb(255, 255, 255); background-color: rgb(4, 22, 16);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">Cloning <a href="https://github.com/apple/example-package-deckofplayingcards.git" class="">https://github.com/apple/example-package-deckofplayingcards.git</a></span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; font-family: Menlo; color: rgb(255, 255, 255); background-color: rgb(4, 22, 16);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">HEAD is now at 0879cff Merge pull request #1 from kostiakoval/master</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; font-family: Menlo; color: rgb(255, 255, 255); background-color: rgb(4, 22, 16);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">Resolved version: 1.0.4</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; font-family: Menlo; color: rgb(255, 255, 255); background-color: rgb(4, 22, 16);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">Cloning <a href="https://github.com/apple/example-package-fisheryates.git" class="">https://github.com/apple/example-package-fisheryates.git</a></span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; font-family: Menlo; color: rgb(255, 255, 255); background-color: rgb(4, 22, 16);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">HEAD is now at d3752ab Merge pull request #5 from contraultra/random-for-all</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; font-family: Menlo; color: rgb(255, 255, 255); background-color: rgb(4, 22, 16);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">Resolved version: 1.1.0</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; font-family: Menlo; color: rgb(255, 255, 255); background-color: rgb(4, 22, 16);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">Cloning <a href="https://github.com/apple/example-package-playingcard.git" class="">https://github.com/apple/example-package-playingcard.git</a></span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; font-family: Menlo; color: rgb(255, 255, 255); background-color: rgb(4, 22, 16);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">HEAD is now at 7986c83 Remove: `targets: []`</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; font-family: Menlo; color: rgb(255, 255, 255); background-color: rgb(4, 22, 16);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">Resolved version: 1.0.1</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; font-family: Menlo; color: rgb(255, 255, 255); background-color: rgb(4, 22, 16);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">Compile Swift Module 'FisherYates' (2 sources)</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; font-family: Menlo; color: rgb(255, 255, 255); background-color: rgb(4, 22, 16);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">Compile Swift Module 'PlayingCard' (3 sources)</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; font-family: Menlo; color: rgb(255, 255, 255); background-color: rgb(4, 22, 16);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">Compile Swift Module 'DeckOfPlayingCards' (1 sources)</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; font-family: Menlo; color: rgb(255, 255, 255); background-color: rgb(4, 22, 16);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">Compile Swift Module 'Dealer' (1 sources)</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; font-family: Menlo; color: rgb(255, 255, 255); background-color: rgb(4, 22, 16);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">Linking .build/debug/Dealer</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; font-family: Menlo; color: rgb(255, 207, 130); background-color: rgb(4, 22, 16);" class=""><span style="font-variant-ligatures: no-common-ligatures; color: #ffffff" class="">0 </span><span style="font-variant-ligatures: no-common-ligatures" class="">Wed 18:30:52 yost DaveBook ~/p/swift/example-package-dealer</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; font-family: Menlo; color: rgb(179, 254, 255); background-color: rgb(4, 22, 16);" class=""><span style="font-variant-ligatures: no-common-ligatures; color: #ffcf82" class="">424 Z% </span><span style="font-variant-ligatures: no-common-ligatures" class="">.build/debug/Dealer</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; font-family: Menlo; color: rgb(255, 255, 255); background-color: rgb(4, 22, 16);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">♣︎7</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; font-family: Menlo; color: rgb(255, 255, 255); background-color: rgb(4, 22, 16);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">♢A</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; font-family: Menlo; color: rgb(255, 255, 255); background-color: rgb(4, 22, 16);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">♡A</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; font-family: Menlo; color: rgb(255, 255, 255); background-color: rgb(4, 22, 16);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">♠︎Q</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; font-family: Menlo; color: rgb(255, 255, 255); background-color: rgb(4, 22, 16);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">♣︎5</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; font-family: Menlo; color: rgb(255, 255, 255); background-color: rgb(4, 22, 16);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">♢6</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; font-family: Menlo; color: rgb(255, 255, 255); background-color: rgb(4, 22, 16);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">♣︎8</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; font-family: Menlo; color: rgb(255, 255, 255); background-color: rgb(4, 22, 16);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">♢8</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; font-family: Menlo; color: rgb(255, 255, 255); background-color: rgb(4, 22, 16);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">♢Q</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; font-family: Menlo; color: rgb(255, 255, 255); background-color: rgb(4, 22, 16);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">♣︎4</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; font-family: Menlo; color: rgb(255, 207, 130); background-color: rgb(4, 22, 16);" class=""><span style="font-variant-ligatures: no-common-ligatures; color: #ffffff" class="">0 </span><span style="font-variant-ligatures: no-common-ligatures" class="">Wed 18:30:59 yost DaveBook ~/p/swift/example-package-dealer</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; font-family: Menlo; color: rgb(179, 254, 255); background-color: rgb(4, 22, 16);" class=""><span style="font-variant-ligatures: no-common-ligatures; color: #ffcf82" class="">425 Z% </span><span style="font-variant-ligatures: no-common-ligatures" class="">cd Packages/PlayingCard-1.0.1</span><span style="font-variant-ligatures: no-common-ligatures; color: #ffffff" class="">&nbsp;</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; font-family: Menlo; color: rgb(255, 207, 130); background-color: rgb(4, 22, 16);" class=""><div style="margin: 0px; font-size: 8.5px; line-height: normal;" class=""><span style="font-variant-ligatures: no-common-ligatures; color: #ffffff" class="">0 </span><span style="font-variant-ligatures: no-common-ligatures" class="">Wed 18:31:28 yost DaveBook ~/p/swift/example-package-dealer/Packages/PlayingCard-1.0.1</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; color: rgb(179, 254, 255);" class=""><span style="font-variant-ligatures: no-common-ligatures; color: #ffcf82" class="">430 Z% </span><span style="font-variant-ligatures: no-common-ligatures" class="">git status</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; color: rgb(255, 255, 255);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">On branch 1.0.1</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; color: rgb(255, 255, 255);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">Your branch is behind 'origin/master' by 4 commits, and can be fast-forwarded.</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; color: rgb(255, 255, 255);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">&nbsp; (use "git pull" to update your local branch)</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; color: rgb(255, 255, 255);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">nothing to commit, working directory clean</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal;" class=""><span style="font-variant-ligatures: no-common-ligatures; color: #ffffff" class="">0 </span><span style="font-variant-ligatures: no-common-ligatures" class="">Wed 18:31:31 yost DaveBook ~/p/swift/example-package-dealer/Packages/PlayingCard-1.0.1</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; color: rgb(179, 254, 255);" class=""><span style="font-variant-ligatures: no-common-ligatures; color: #ffcf82" class="">431 Z% </span><span style="font-variant-ligatures: no-common-ligatures" class="">git remote -v</span><span style="font-variant-ligatures: no-common-ligatures; color: #ffffff" class=""> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; color: rgb(255, 255, 255);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">origin<span class="Apple-tab-span" style="white-space:pre">        </span><a href="https://github.com/apple/example-package-playingcard.git" class="">https://github.com/apple/example-package-playingcard.git</a> (fetch)</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; color: rgb(255, 255, 255);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">origin<span class="Apple-tab-span" style="white-space:pre">        </span><a href="https://github.com/apple/example-package-playingcard.git" class="">https://github.com/apple/example-package-playingcard.git</a> (push)</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal;" class=""><span style="font-variant-ligatures: no-common-ligatures; color: #ffffff" class="">0 </span><span style="font-variant-ligatures: no-common-ligatures" class="">Wed 18:35:57 yost DaveBook ~/p/swift/example-package-dealer/Packages/PlayingCard-1.0.1</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; color: rgb(179, 254, 255);" class=""><span style="font-variant-ligatures: no-common-ligatures; color: #ffcf82" class="">432 Z% </span><span style="font-variant-ligatures: no-common-ligatures" class="">cd ../FisherYates-1.1.0</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal;" class=""><span style="font-variant-ligatures: no-common-ligatures; color: #ffffff" class="">0 </span><span style="font-variant-ligatures: no-common-ligatures" class="">Wed 18:36:19 yost DaveBook ~/p/swift/example-package-dealer/Packages/FisherYates-1.1.0</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; color: rgb(179, 254, 255);" class=""><span style="font-variant-ligatures: no-common-ligatures; color: #ffcf82" class="">433 Z% </span><span style="font-variant-ligatures: no-common-ligatures" class="">git status</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; color: rgb(255, 255, 255);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">On branch 1.1.0</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; color: rgb(255, 255, 255);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">Your branch is behind 'origin/master' by 2 commits, and can be fast-forwarded.</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; color: rgb(255, 255, 255);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">&nbsp; (use "git pull" to update your local branch)</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; color: rgb(255, 255, 255);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">nothing to commit, working directory clean</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal;" class=""><span style="font-variant-ligatures: no-common-ligatures; color: #ffffff" class="">0 </span><span style="font-variant-ligatures: no-common-ligatures" class="">Wed 18:36:20 yost DaveBook ~/p/swift/example-package-dealer/Packages/FisherYates-1.1.0</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; color: rgb(179, 254, 255);" class=""><span style="font-variant-ligatures: no-common-ligatures; color: #ffcf82" class="">434 Z% </span><span style="font-variant-ligatures: no-common-ligatures" class="">git remote -v</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; color: rgb(255, 255, 255);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">origin<span class="Apple-tab-span" style="white-space:pre">        </span><a href="https://github.com/apple/example-package-fisheryates.git" class="">https://github.com/apple/example-package-fisheryates.git</a> (fetch)</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; color: rgb(255, 255, 255);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">origin<span class="Apple-tab-span" style="white-space:pre">        </span><a href="https://github.com/apple/example-package-fisheryates.git" class="">https://github.com/apple/example-package-fisheryates.git</a> (push)</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal;" class=""><span style="font-variant-ligatures: no-common-ligatures; color: #ffffff" class="">0 </span><span style="font-variant-ligatures: no-common-ligatures" class="">Wed 18:36:23 yost DaveBook ~/p/swift/example-package-dealer/Packages/FisherYates-1.1.0</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; color: rgb(179, 254, 255);" class=""><span style="font-variant-ligatures: no-common-ligatures; color: #ffcf82" class="">435 Z% </span><span style="font-variant-ligatures: no-common-ligatures" class="">cd ../DeckOfPlayingCards-1.0.4</span><span style="font-variant-ligatures: no-common-ligatures; color: #ffffff" class="">&nbsp;</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal;" class=""><span style="font-variant-ligatures: no-common-ligatures; color: #ffffff" class="">0 </span><span style="font-variant-ligatures: no-common-ligatures" class="">Wed 18:36:46 yost DaveBook ~/p/swift/example-package-dealer/Packages/DeckOfPlayingCards-1.0.4</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; color: rgb(179, 254, 255);" class=""><span style="font-variant-ligatures: no-common-ligatures; color: #ffcf82" class="">436 Z% </span><span style="font-variant-ligatures: no-common-ligatures" class="">git status</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; color: rgb(255, 255, 255);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">On branch 1.0.4</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; color: rgb(255, 255, 255);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">Your branch is behind 'origin/master' by 3 commits, and can be fast-forwarded.</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; color: rgb(255, 255, 255);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">&nbsp; (use "git pull" to update your local branch)</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; color: rgb(255, 255, 255);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">nothing to commit, working directory clean</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal;" class=""><span style="font-variant-ligatures: no-common-ligatures; color: #ffffff" class="">0 </span><span style="font-variant-ligatures: no-common-ligatures" class="">Wed 18:36:49 yost DaveBook ~/p/swift/example-package-dealer/Packages/DeckOfPlayingCards-1.0.4</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; color: rgb(179, 254, 255);" class=""><span style="font-variant-ligatures: no-common-ligatures; color: #ffcf82" class="">437 Z% </span><span style="font-variant-ligatures: no-common-ligatures" class="">git remote -v</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; color: rgb(255, 255, 255);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">origin<span class="Apple-tab-span" style="white-space:pre">        </span><a href="https://github.com/apple/example-package-deckofplayingcards.git" class="">https://github.com/apple/example-package-deckofplayingcards.git</a> (fetch)</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal; color: rgb(255, 255, 255);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">origin<span class="Apple-tab-span" style="white-space:pre">        </span><a href="https://github.com/apple/example-package-deckofplayingcards.git" class="">https://github.com/apple/example-package-deckofplayingcards.git</a> (push)</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal;" class=""><span style="font-variant-ligatures: no-common-ligatures; color: #ffffff" class="">0 </span><span style="font-variant-ligatures: no-common-ligatures" class="">Wed 18:36:52 yost DaveBook ~/p/swift/example-package-dealer/Packages/DeckOfPlayingCards-1.0.4</span></div><div style="margin: 0px; font-size: 8.5px; line-height: normal;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">438 Z%&nbsp;</span></div></div></div><div class=""><br class=""></div></div>_______________________________________________<br class="">swift-users mailing list<br class=""><a href="mailto:swift-users@swift.org" class="">swift-users@swift.org</a><br class=""><a href="https://lists.swift.org/mailman/listinfo/swift-users" class="">https://lists.swift.org/mailman/listinfo/swift-users</a><br class=""></div></blockquote></div><br class=""></div></div>_______________________________________________<br class="">swift-users mailing list<br class=""><a href="mailto:swift-users@swift.org" class="">swift-users@swift.org</a><br class=""><a href="https://lists.swift.org/mailman/listinfo/swift-users" class="">https://lists.swift.org/mailman/listinfo/swift-users</a><br class=""></div></blockquote></div><br class=""></div></div></div></div></blockquote></div><br class=""></div></div></div></blockquote></div><br class=""></div></div></div></blockquote></div><br class=""></body></html>