Git branching hints

# Create a new branch named "feature_x" and switch to it using git checkout -b feature_x # Switch back to master git checkout master # Delete the branch again git branch -d feature_x # A branch is not available to others unless you push the branch to your remote repository git push origin <branch>
Some git branching hints for a successful team development using branching strategy.

#git #branch #branching #hint

#cesarnog

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.