Files
tldr/pages.tr/common/git-flow.md
2022-10-31 06:52:35 -03:00

25 lines
629 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# git flow
> Üst seviye depo işlemleri için Git uzantı koleksiyonu.
> Daha fazla bilgi için: <https://github.com/nvie/gitflow>.
- Varolan bir git deposu içinde başlat:
`git flow init`
- `develop` tabanlı bir özellik dalı üzerinde geliştirmeye başla:
`git flow feature start {{özellik}}`
- Özellik dalı üzerinde geliştirmeyi bitir, `develop` dalı ile birleştir ve dalı sil:
`git flow feature finish {{özellik}}`
- Özelliği uzak sunucuya yayınla:
`git flow feature publish {{özellik}}`
- Başka bir kullanıcı tarafından yayınlanan özelliği al:
`git flow feature pull origin {{özellik}}`