diff --git a/index.ca_CA.html b/index.ca_CA.html index a9eacd0..30f0fed 100644 --- a/index.ca_CA.html +++ b/index.ca_CA.html @@ -1,5 +1,5 @@ - +
@@ -7,6 +7,7 @@ + @@ -33,7 +34,7 @@efficient branching using git-flow by Vincent Driessen
-translations: - English - +
branques eficients usant git-flow, per Vincent Driessen
+traduccions: + English - Castellano - Brazilian Portugues - 繁體中文(Traditional Chinese) - @@ -60,7 +61,7 @@ Nederlands - Русский (Russian) - Deutsch (German) - - Català (Catalan) + Català (Catalan)
@@ -68,38 +69,36 @@- git-flow are a set of git extensions to provide high-level repository operations for Vincent - Driessen's branching model. - more + git-flow és un conjunt d'extensions de git que proporcionen operacions d'alt nivell sobre repositoris pel model de branques de Vincent Driessen. + més
★ ★ ★
-This cheatsheet shows the basic usage and effect of git-flow operations
+Aquest full de referència ràpida mostra l'ús bàsic i l'efecte de les operacions de git-flow
★ ★ ★
★ ★ ★
★ ★ ★
You need wget and util-linux to install git-flow.
+Necessites wget i util-linux per instal·lar git-flow.
- For detailed git flow intallation instructions please visit the git flow - wiki. + Per instruccions detallades per instal·lar git flow, visita la wiki de git flow.
Git flow needs to be initialized in order to customize your project setup.
+Git flow necessita inicialitzar-se per personalitzar la configuració del teu projecte.
★ ★ ★
Start using git-flow by initializing it inside an existing git repository:
+Comença a usar git-flow inicialitzant-lo en un repositori git existent:
git flow init
- You'll have to answer a few questions regarding the naming conventions for your branches.
- It's recommended to use the default values.
+ Hauràs de contestar unes preguntes respecte les convencions per anomenar les branques.
+ Es recomana usar els valors per defecte.
★ ★ ★
Development of new features starting from the 'develop' branch.
-Start developing a new feature with
+El desenvolupament de noves funcionalitats comença des de la branca 'develop'.
+Comença a desenvolupar una nova funcionalitat amb
- git flow feature start MYFEATURE + git flow feature start LAMEVAFUNCIONALITAT-
This action creates a new feature branch based on 'develop' and switches to it
+Aquesta acció crea una nova branca de funcionalitat basada en 'develop' i la fa activa
+Esse comando cria um novo branch da funcionalidade baseado no 'develop' e alterna para ele
- Finish the development of a feature. - This action performs the following + Finaliza o desenvolvimento de uma funcionalidade. + Esse comando faz o seguinte
@@ -217,11 +206,12 @@-Publish a feature
+Publicar uma funcionalidade
- Are you developing a feature in collaboration?
- Publish a feature to the remote server so it can be used by other users. + Você está desenvolvendo uma funcionalidade colaborativamente?
+ Publique uma funcionalidade para o servidor remoto, assim ela pode ser + utilizada por outros usuários.@@ -235,17 +225,16 @@-Getting a published feature
+Obter uma funcionalidade publicada
- Get a feature published by another user. + Obtenha uma funcionalidade publicada por outro usuário e acompanhe + as alterações remotas.
- git flow feature pull origin MYFEATURE + git flow feature pull MYFEATURE- -You can track a feature on origin by using
git flow feature track MYFEATURE
@@ -254,29 +243,31 @@-Make a release
+Criar uma versão/release
-
- Support preparation of a new production release
-- Allow for minor bug fixes and preparing meta-data for a release
+- Auxilia a preparação de uma nova versão de produção
+- Permite correções de bugs menores e a preparação de metadados de uma versão
★ ★ ★
-Start a release
+Começar uma versão
-To start a release, use the git flow release command. It creates a release branch created from the 'develop' branch.
+Para começar uma versão, use o comando git flow release. Ele
+ cria um branch da versão baseado no branch 'develop'. +git flow release start RELEASE [BASE]-You can optionally supply a
+[BASE]
commit sha-1 hash to start the release from. The commit must - be on the - 'develop' branch.Você pode opcionalmente fornecer um hash sha-1 do commit
[BASE]
de onde começar a versão. O + commit precisa estar no branch 'develop'★ ★ ★
-It's wise to publish the release branch after creating it to allow release commits by other developers. Do it similar to feature publishing with the command:
+É sensato publicar o branch da versão depois de criá-lo, para permitir commits por outros + desenvolvedores. É semelhante à publicação de uma funcionalidade com o comando:
git flow release publish RELEASE-(You can track a remote release with the
+git flow release track RELEASE
command)(Você pode acompanhar uma versão remota com o comando
git flow release track RELEASE
)@@ -285,20 +276,18 @@-Finish up a release
+Finalizar uma versão
-Finishing a release is one of the big steps in git branching. It performs several actions:
+A finalização de uma versão é um dos grandes passos na ramificação/branching do git. Ele executa várias ações:
-
- Merges the release branch back into 'master'
-- Tags the release with its name
-- Back-merges the release into 'develop'
-- Removes the release branch
+- Mescla o branch da versão no 'master'
+- Etiqueta a versão com seu nome
+- Mescla o branch da versão de volta no 'develop'
+- Remove o branch da versão
git flow release finish RELEASE-Don't forget to push your tags with
-git push --tags
@@ -307,22 +296,21 @@-Hotfixes
+Hotfixes
-
- Hotfixes arise from the necessity to act immediately upon an undesired state of a live production version -
-- May be branched off from the corresponding tag on the master branch that marks the production version.
+- Os hotfixes surgem da necessidade de agir imediatamente sobre uma situação indesejada na versão de produção ativa
+- Pode ser criado a partir da tag correspondente no branch master que indica a versão em produção.
★ ★ ★
git flow hotfix start
-Like the other git flow commands, a hotfix is started with
+Assim como os outros comandos do git flow, um hotfix inicia com
- git flow hotfix start VERSION [BASENAME] + git flow hotfix start RELEASE-The version argument hereby marks the new hotfix release name. Optionally you can specify a basename to start from.
+O argumento release nesse caso marca a versão defeituosa na produção
@@ -331,11 +319,11 @@-Finish a hotfix
+Finalizar um hotfix
-By finishing a hotfix it gets merged back into develop and master. Additionally the master merge is tagged with the hotfix version.
+Ao finalizar um hotfix ele é mesclado tanto no develop quanto no master. Além disso, o merge no master é etiquetado.
- git flow hotfix finish VERSION + git flow hotfix finish RELEASE@@ -353,7 +341,7 @@ @@ -361,12 +349,11 @@@@ -376,7 +363,7 @@Backlog
★ ★ ★
-
- Not all available commands are covered here, only the most important ones
-- You can still use git and all its commands normally as you know them, git flow is only a tooling - collection -
-- The 'support' feature is still beta, using it is not advised
-- If you'd like to supply translations I'd be happy to integrate them
+- Nem todos os comandos disponíveis estão cobertos aqui, apenas os mais importantes deles
+- Você pode continuar a usar o git e todos os comandos dele normalmente como você já conhece, o git flow + é apenas uma coleção de ferramentas
+- A funcionalidade 'support' continua no estágio beta, seu uso não é indicado
+- Se você quiser fornecer traduções, ficarei feliz de integrá-las
★ ★ ★