Created
July 25, 2014 21:23
-
-
Save brettp/30c6ca075613562c4a4f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[[email protected] tmp]$ git clone https://github.com/Elgg/Elgg.git | |
Cloning into 'Elgg'... | |
remote: Reusing existing pack: 111652, done. | |
remote: Counting objects: 55, done. | |
remote: Compressing objects: 100% (52/52), done. | |
remote: Total 111707 (delta 19), reused 9 (delta 2) | |
Receiving objects: 100% (111707/111707), 31.02 MiB | 2.53 MiB/s, done. | |
Resolving deltas: 100% (70265/70265), done. | |
Checking connectivity... done. | |
[[email protected] tmp]$ cd Elgg/ | |
[[email protected] Elgg]$ git checkout master | |
Branch master set up to track remote branch master from origin. | |
Switched to a new branch 'master' | |
Your branch is up-to-date with 'origin/master'. | |
[[email protected] Elgg]$ ~/master/composer.phar install | |
Loading composer repositories with package information | |
Installing dependencies (including require-dev) from lock file | |
Warning: The lock file is not up to date with the latest changes in composer.json. You may be getting outdated dependencies. Run update to update them. | |
Nothing to install or update | |
Generating autoload files | |
[[email protected] Elgg]$ ~/master/composer.phar update | |
Loading composer repositories with package information | |
Updating dependencies (including require-dev) | |
- Removing phpunit/php-code-coverage (2.0.8) | |
- Installing phpunit/php-code-coverage (2.0.9) | |
Loading from cache | |
- Removing phpunit/phpunit-mock-objects (2.1.4) | |
- Installing phpunit/phpunit-mock-objects (2.1.5) | |
Loading from cache | |
- Removing symfony/yaml (v2.5.0) | |
- Installing symfony/yaml (v2.5.2) | |
Loading from cache | |
Writing lock file | |
Generating autoload files | |
[[email protected] Elgg]$ git status | |
On branch master | |
Your branch is up-to-date with 'origin/master'. | |
Changes not staged for commit: | |
(use "git add <file>..." to update what will be committed) | |
(use "git checkout -- <file>..." to discard changes in working directory) | |
modified: composer.lock | |
modified: vendor/autoload.php | |
modified: vendor/composer/autoload_real.php | |
modified: vendor/composer/include_paths.php | |
modified: vendor/composer/installed.json | |
modified: vendor/phpunit/php-code-coverage/src/CodeCoverage/Filter.php | |
modified: vendor/phpunit/php-code-coverage/src/CodeCoverage/Report/HTML/Renderer.php | |
modified: vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Generator.php | |
modified: vendor/symfony/yaml/Symfony/Component/Yaml/Parser.php | |
modified: vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/sfMergeKey.yml | |
modified: vendor/symfony/yaml/Symfony/Component/Yaml/phpunit.xml.dist | |
no changes added to commit (use "git add" and/or "git commit -a") | |
[[email protected] Elgg]$ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment