Item | Name |
---|---|
Release branch | release/v2.0.1 |
Feature branch | feature/2234_my_feature_name |
Hotfix branch | hotfix/my_hotfix_name |
Commit | #1234 Add my news |
Tag | v2.0.1 |
Hotfix Tag | v2.0.1.1 |
Work in progress PR | [WIP] #1234 My pull request |
Ready for review PR | [RFR] #1234 My pull request |
# Clone the repo from the remote
git clone <remote_repo>
# Refresh branches from remote
git fetch --all
# List branches
git branch
# List commits for the current branch (see below "git lg" for a best command line)
git log
# List commits for all branches (see below "git lgall" for a best command line)
git log --all --graph
# Switch to a branch
git checkout my_branch
# Get current branch changes from remote
git pull --rebase origin my_branch
# Choose the right branch
# Look the issue target version, or ask to your lead dev
# Create a new branch
git checkout -b my_new_branch
# Create a new branch from another branch
git checkout -b my_new_branch the_old_branch
# Work commit after changes
# If the commit refers to an existing issue, put the issue #ID at the beggining of the message :
git commit -am "#1234 Add the git flow documentation"
# Send your branch to the remote
git push origin my_branch
# Squash X commits into a single one
git rebase -i HEAD~X
# You editor will open itself, then replace the words "pick" by "squash" on each line to squash, except the first one, save and quit.
# Merge with Gitlab
# Go to Gitlab, then create a Merge Request from your feature branch, to the target release branch. Put a label at the beginning of the name : [WIP] or [RFR].
# Wait for the +1 comment from another team member, then use the `Accept merge request` button, checking `Delete the merged branch` checkbox
# Merge with Github
# Go to Github, then create a Pull Request from your feature branch in your forked project, to the target release branch in the parent project. Put a label at the beginning of the name : [WIP] or [RFR].
# Wait for the +1 comment from another team member, then use the `Merge PR` button, then delete the merged branch
# Delete a local branch
git branch -d my_branch
# Delete a remote branch
git push origin :my_branch
You can add some git aliases and configure some options by editing your .gitconfig
file :
[user]
name = yourName
email = [email protected]
[core]
excludesfile = /home/yourName/.gitignore
[push]
default = simple
[alias]
lg = log --abbrev-commit --decorate --date=relative --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)'
lgall = log --graph --abbrev-commit --decorate --date=relative --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all
co = checkout
rere = rebase -i HEAD~2
rerere = rebase -i HEAD~3
[rerere]
enabled = true
With this .gitconfig
file, you can add a .gitignore
file in your home and add all your IDE hidden directories (.idea, .sublime, ...).
Somes aliases are added with this file :
git co master # git checkout master
git rere # git rebase -i HEAD~2
git rerere # git rebase -i HEAD~3
git lg # git log
git lgall # git log --all
git checkout release/v2.0.1
git checkout v2.0.1
git checkout release/v2.0.1
git checkout -b feature/2234_my_feature_name
git checkout feature/2234_my_feature_name
git rebase release/v2.0.1
git push -f feature/2234_my_feature_name
# Or git rebase release/v2.0.1 feature/2234_my_feature_name
I want to merge my two last feature commits in a single commit to clean the history and make future merges easier
git rebase -i HEAD~2
git push -f
git cherry-pick 28f0f05
Without code review (and PR / MR) :
git checkout release/v2.0.1 # Switch to the release branch
git pull --rebase orgin release/v2.0.1 # Get all new commits on the release branch, or git pull --ff-only orgin release/v2.0.1
git merge feature/2234_my_feature_name # Merge the feature
git push origin release/v2.0.1 # Send the completed feature branch
git branch -d feature/2234_my_feature_name # Delete the local feature branch
git push origin :feature/2234_my_feature_name # Delete the remote feature branch
With code review and PR :
git checkout feature/2234_my_feature_name
git rebase release/v2.0.1
git push -f origin feature/2234_my_feature_name
Then go to Github / Gitlab, and create the PR. Put a label at the beginning of the name : [WIP] or [RFR].
Wait for the +1 from another team member, then use the Merge PR
button, checking Delete the merged branch
checkbox
git checkout release/v2.0.1
git checkout -b release/v2.0.2
# Or git checkout -b release/v2.0.2 release/v2.0.1
git checkout master # Switch to master
git merge release/v2.0.1 # Merge the release branch into master
git push origin master # Send master
git tag -a v2.0.1 -m 'version 2.0.1' # Create a new tag
git push origin v2.0.1 # Send the new tag
git checkout master
git tag -a v2.0.1 -m 'version 2.0.1'
git push origin v2.0.1
git branch -d release/v2.0.1
git push origin :release/v2.0.1
git checkout -b hotfix/fix_some_things release/v2.0.1
# Work & commit ...
git checkout release/v2.0.1
git merge hotfix/fix_some_things
git checkout master
git merge release/v2.0.1
git tag -a v2.0.1.1 -m 'version 2.0.1.1 - hotfix'
git branch -d hotfix/fix_some_things
# Merge the hotfix in working branches
git co release/v2.0.2
git merge release/v2.0.1