File: .gitconfig

package info (click to toggle)
python-git 3.1.30-1%2Bdeb12u2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 2,596 kB
  • sloc: python: 15,725; makefile: 80; sh: 28
file content (3 lines) | stat: -rw-r--r-- 202 bytes parent folder | download | duplicates (6)
1
2
3
[alias]
    rbi = "!g() { git rebase -i origin/${1:-master} ; } ; g"
    expush = "!f() { git branch -f tmp ; { git rbi $1 && git push ; } ; git reset --hard tmp ; git rebase origin/${1:-master}; } ; f"