I hereby claim:
- I am DANARONOFF on github.
- I am danaronoff (https://keybase.io/danaronoff) on keybase.
- I have a public key whose fingerprint is AD5E 37FC 4511 4325 EA4A 8A52 DE37 4E17 A7A4 4EB0
To claim this, I am signing this object:
/* | |
* The contents of this file are subject to the terms of the Common Development and | |
* Distribution License (the License). You may not use this file except in compliance with the | |
* License. | |
* | |
* You can obtain a copy of the License at legal-notices/CDDLv1_0.txt. See the License for the | |
* specific language governing permission and limitations under the License. | |
* | |
* When distributing Covered Software, include this CDDL Header Notice in each file and include | |
* the License file at legal-notices/CDDLv1_0.txt. If applicable, add the following below the CDDL |
/* | |
* The contents of this file are subject to the terms of the Common Development and | |
* Distribution License (the License). You may not use this file except in compliance with the | |
* License. | |
* | |
* You can obtain a copy of the License at legal-notices/CDDLv1_0.txt. See the License for the | |
* specific language governing permission and limitations under the License. | |
* | |
* When distributing Covered Software, include this CDDL Header Notice in each file and include | |
* the License file at legal-notices/CDDLv1_0.txt. If applicable, add the following below the CDDL |
I hereby claim:
To claim this, I am signing this object:
Use case : Imagine we have just created a project with composer create-project awesone-project
(currently V0.2).
2 weeks later, there is a new release (V0.3). How to update your project ?
Since composer update
only updates the project dependencies, it is not what we are looking for.
Composer doesn't know about awesome-project since it's not in our composer.json.
After trying many git solutions, I've come to this :
git archive --output=changes.zip HEAD $(git diff --name-only SHA1 SHA2 --diff-filter=ACMRTUXB)
This command will check for changes between the two commits and ignore deleted files.