From 0ecaee368c937bd9617e13c47b7020f170d74638 Mon Sep 17 00:00:00 2001 From: Hemerson Vianna Date: Tue, 26 Jan 2016 11:17:10 -0200 Subject: [PATCH] del: removing unnecessary files --- CHANGELOG.md | 4 ---- CONTRIBUTING.md | 57 ------------------------------------------------- LICENSE.md | 22 ------------------- 3 files changed, 83 deletions(-) delete mode 100644 CHANGELOG.md delete mode 100644 CONTRIBUTING.md delete mode 100644 LICENSE.md diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index 57ae1ae..0000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,4 +0,0 @@ - -## 1.0.0 *(2015-01-04)* - - - Release \ No newline at end of file diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md deleted file mode 100644 index ca6d00b..0000000 --- a/CONTRIBUTING.md +++ /dev/null @@ -1,57 +0,0 @@ -# Contribuições - -## Por onde começar? - -**1.** Faça o _fork_ do projeto. - -**2.** [Entenda o fluxo](#fluxo). - -## Fluxo - -É muito fácil contribuir para o projeto. Qualquer tipo de ajuda (seja ela grande ou pequena) é bem-vinda. Se encontrar qualquer parte do projeto que possa ser melhorada, essa é uma grande oportunidade para participar ([aqui](https://github.com/resource-solutions/resource-responsive-sidemenu/issues) é um ótimo lugar para achar coisas que possam ser melhoradas). Caso não saiba por onde começar: - -**1.** Faça referência ao repositório oficial após o _fork_ - -``` -git remote add upstream git@github.com:resource-solutions/resource-responsive-sidemenu.git -``` - -**2.** Antes de iniciar o processo de contribuição, crie uma nova branch para fazer suas alterações. - -Alguns exemplos: - -- Para Novas tarefas: `git checkout -b nomeDaTarefa` -- Para erros: `git checkout -b nomeDoErro` - -> Use qualquer nome que seja coerente com a contribuição que está sendo feita. - -**3.** Após realizar as alterações, é hora de fazer um commit com uma mensagem em inglês coerente do que foi feito. Exemplo: - -``` -git add --all -git commit -am ‘Adding a new task’ -git push origin nomeDaTarefa -``` -> Todas as mensagens dos commits devem ser escritas em inglês. - -**4.** Envie um _Pull Request_ com as alterações feitas, fazendo referência para o `master` do repositório oficial. - -**5.** Sua contribuição será analisada. Em alguns casos será pedido algumas alterações antes de dar merge. - -Após o merge: - -- Delete a branch utilizada: - -``` -git checkout master -git push origin nomeDaTarefa -git branch -D nomeDaTarefa -``` - -- Atualize seu repositório com o repositório oficial: - -``` -git fetch upstream -git rebase upstream/master -git push -f origin master -``` \ No newline at end of file diff --git a/LICENSE.md b/LICENSE.md deleted file mode 100644 index a977bc1..0000000 --- a/LICENSE.md +++ /dev/null @@ -1,22 +0,0 @@ -Copyright (c) 2015 Hemerson vianna - -Permission is hereby granted, free of charge, to any person -obtaining a copy of this software and associated documentation -files (the "Software"), to deal in the Software without -restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following -conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT -HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR -OTHER DEALINGS IN THE SOFTWARE.