This page (revision-22) was last changed on 13-Oct-2021 18:43 by arcoleo

This page was created on 31-Mar-2020 17:25 by arcoleo

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Page revision history

Version Date Modified Size Author Changes ... Change note
22 13-Oct-2021 18:43 1 KB arcoleo to previous
21 13-Jul-2021 19:34 1 KB arcoleo to previous | to last

Page References

Incoming links Outgoing links
Git Branch Usage ...nobody

Version management

Difference between version and

At line 1 removed 2 lines
[{TableOfContents}]
At line 5 changed one line
!!! Squashing Your Branch
!! Squashing Your Branch
At line 7 changed 3 lines
|| Description || Zsh || Git
| Checkout branch | {{{gco $branch_name}}} | {{{git checkout $branch_name}}}
| Squash against master | {{{g rbim}}}[1][2] | {{{git rebase -i HEAD~$(git rev-list --count master..);
Checkout your branch
{{{
omz> gco $branch_name
zsh> git checkout $branch_name
At line 11 removed 5 lines
| Squash against another branch | {{{g rbi $branch_name}}}[3] | {{{git rebase -i HEAD~$(git rev-list --count ${1}..);
}}}
| Force push your branch | {{{ggfl}}} | {{{git push
--force-with-lease
origin $current_branch}}}
At line 17 changed one line
{{.gitconfig}} syntax:
Rebase your branch from master. {{$number_of_commits}} is displayed in GitLab at the top, where it says
At line 19 changed one line
[#1] {{{rbim = "!f() { git rebase -i HEAD~$(git rev-list --count master..); }; f"}}}
Overview: X, Commits: Y, Pipelines: Z, ...
At line 21 changed one line
[#2] {{{rbin}}} if using main instead of master
The number you want is Y.
At line 23 changed one line
[#3] {{{rbi = "!f() { git rebase -i HEAD~$(git rev-list --count ${1}..); }; f"}}}
{{{
omz> grbi HEAD~5
zsh> git rebase -i HEAD~$number_of_commits
}}}
At line 25 changed one line
!!! Update From Master
Force push your branch
At line 25 added 7 lines
{{{
omz> ggfl
zsh> git push --force-with-lease origin $current_branch
}}}
!! Update From Master
At line 29 changed one line
Assuming you are currently in {{$branch_name}},
Checkout master
At line 31 changed 9 lines
|| Description || Zsh || Git
| Checkout master | {{{gcm}}} | {{{git checkout master}}}
| Pull | {{{gl}}} | {{{git pull}}}
| Checkout branch | {{{gco @{-1} }}}[3] | {{{git checkout @{-1} }}}
| Rebase from master | {{{grbm}}} | {{{git rebase master}}}
| Handle conflicts, test, etc.
| Force push {{{$current_branch}}} to remote | {{{ggfl}}} | {{{git push
--force-with-lease
origin $current_branch}}}
{{{
omz> gcm
zsh> git checkout master
}}}
At line 41 changed one line
[#3] references the most recent branch, {{{$branch_name}}}
Pull
At line 43 changed one line
!!! Push to Master
{{{
omz> gl
zsh> git pull
}}}
At line 48 added 25 lines
Checkout branch
{{{
omz> gco $branch_name
zsh> git checkout $branch_name
}}}
Rebase from master
{{{
omz> grbm
zsh> git rebase master
}}}
Handle conflicts, test, etc.
Force push \$current_branch to remote.
{{{
omz> ggfl
zsh> git push --force-with-lease origin $current_branch
}}}
!! Push to Master
At line 47 changed 4 lines
|| Description || Zsh || Git
| Checkout master | {{{gcm}}} | {{{git checkout master}}}
| Merge feature branch into master | {{{gm $feature_branch}}} | {{{git merge $feature_branch}}}
| Push master| {{{ggp}}} | {{{git push origin master}}}
{{{
omz> gcm
zsh> git checkout master
}}}
At line 80 added 10 lines
{{{
omz> gm $feature_branch
zsh> git merge $feature_branch
}}}
{{{
omz> ggp
zsh> git push origin master
}}}
At line 53 changed one line
[CategoryComputing.SCM.Git] - [CategoryFrequent]
[CategoryComputing.SCM.Git]