# Get latest repository changes
$ git svn fetch
$ git svn rebase
# Get remote branches
$ git --no-pager branch --remotes
origin/feature
origin/trunk
# Create new branch
$ git checkout -b feature origin/feature# Get latest repository changes
$ git svn rebase
$ git svn fetch
# Get remote branches
$ git --no-pager branch --remotes
origin/feature
origin/old-feature
origin/trunk
# Delete old branch
$ git branch --remotes --delete origin/old-feature