This repository was archived by the owner on Nov 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Small changes #4204
Merged
Merged
Small changes #4204
Changes from all commits
Commits
Show all changes
37 commits
Select commit
Hold shift + click to select a range
9f53591
[ImgBot] Optimize images
ImgBotApp 83f7a26
remove 1page layoufrom the code as per the latest version magento2.3 …
manthandave 438132f
Merge branch 'master' into checkout_customize_code
manthandave 302b2fb
Update composer.md
likemusic e1ff035
version change in installation file
manthandave 0797170
Merge pull request #4191 from manthandave/inventory-managements-insta…
dobooth 7f655bc
Merge branch 'master' into checkout_customize_code
dobooth 956cd69
Merge branch 'master' into small_changes
dobooth 13664a8
Merge pull request #4178 from manthandave/checkout_customize_code
dobooth a86e231
Update config-reference-gitignore.md
hiteshvaghasiya83 376fdfb
Correct to use zero
hguthrie f83416e
Merge branch 'master' into patch-11
dobooth 88cb6f1
Merge branch 'master' into small_changes
dobooth 0f844ce
Merge pull request #4181 from likemusic/patch-11
dobooth 78e0900
Merge branch 'master' into patch-1
dobooth 24ac2d1
Merge branch 'master' into small_changes
dobooth 9c462ae
Merge pull request #4193 from hiteshvaghasiya83/patch-1
dobooth fc7d6ac
Merge branch 'master' into hg-fixzero
dobooth 18eebf3
Merge branch 'master' into small_changes
dobooth 776df2d
Merge pull request #4195 from magento/hg-fixzero
dobooth 9b1029c
fixing formatting for warning
erikmarr dc42fd6
adding updates for 2.1 and 2.3
erikmarr f832759
Merge pull request #4203 from magento/em_magento-fixFormatting
dobooth 14b0807
Merge branch 'master' into imgbot
dobooth 6133809
Merge pull request #4177 from magento/imgbot
dobooth a92113f
Formatted CLI commands
yogeshsuhagiya b81229d
Make code in user readable format
yogeshsuhagiya 1bc8930
Change the Sentence Formation and Grammatical Improvements
manthandave 827000f
Merge branch 'master' into master-yogesh-patch-16
dobooth 30f0474
Merge branch 'master' into small_changes
dobooth 1ad5777
Merge pull request #4207 from yogeshsuhagiya/master-yogesh-patch-16
dobooth 50d4f57
Merge branch 'master' into master-yogesh-patch-15
dobooth 20a1a36
Merge pull request #4206 from yogeshsuhagiya/master-yogesh-patch-15
dobooth bb77e7d
Small tweak.
dobooth 117322e
Merge branch 'master' into graphql_improvement
dobooth 16e8e9c
Merge pull request #4208 from manthandave/graphql_improvement
dobooth 365c67d
Fixed command markup.
dobooth File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,19 +41,19 @@ To get the Magento metapackage: | |
|
||
**{{site.data.var.ce}}** | ||
```bash | ||
composer create-project --repository=https://repo.magento.com/magento/project-community-edition:<version-tag> <install-directory-name> | ||
composer create-project --repository=https://repo.magento.com/ magento/project-community-edition:<version-tag> <install-directory-name> | ||
``` | ||
|
||
**{{site.data.var.ee}}** | ||
```bash | ||
composer create-project --repository=https://repo.magento.com/magento/project-enterprise-edition:<version-tag> <install-directory-name> | ||
composer create-project --repository=https://repo.magento.com/ magento/project-enterprise-edition:<version-tag> <install-directory-name> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Looks like an extra space was added. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. See above. |
||
``` | ||
|
||
When prompted, enter your Magento authentication keys. Your _public key_ is your username; your _private key_ is your password. | ||
|
||
To install {{site.data.var.ce}} version 2.2.2 run in current folder: | ||
```bash | ||
composer create-project --repository=https://repo.magento.com/magento/project-community-edition:2.2.2 . | ||
composer create-project --repository=https://repo.magento.com/ magento/project-community-edition:2.2.2 . | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Looks like an extra space was added. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same. |
||
``` | ||
|
||
If you encounter errors, such as `Could not find package...` or `...no matching package found`, make sure there are no typos in your command. If you still encounter errors, you may not be authorized to download {{site.data.var.ee}}. Contact [Magento support](https://magento.com/support) for help. | ||
|
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
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
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
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
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
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
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like an extra space was added.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's the fix. I was surprised myself.