News

The Git merge for a PR process is simply a merge process from the feature branch, subject of the pull request to the master. Below are the Git commands that are involved: git checkout master --> ...
2-3-1-1 ssh-keygen -t ed25519 -C "[email protected]" # Create an SSH Key using ed25519 encryption with the email address provided 2.3-1-2 Select the file to store the Secret. The defaul location ...
Use the “git flow release start” command to create the release branch. $ git flow release start 0.2.1 Switched to branch 'release/0.2.1' $ git branch -a develop master * release/0.1.0. When you’re ...