Refactored to use inheritance and separate logic where possible. Addressed comments. Change-Id: I9e62414cd83121575bdf99a3b47466a7585bedb6 Former-commit-id:e4be1f24e7
[formerlydbba727f3d
] [formerly17196b5dcd
[formerly 6e015b3f61c20635077d6e8271e9b763e5a32fe1]] Former-commit-id:17196b5dcd
Former-commit-id:8b279966d1
15 lines
232 B
Bash
Executable file
15 lines
232 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Get current branch name
|
|
branch=`git branch | grep "*"`
|
|
branch="${branch:2}"
|
|
|
|
# Set remote push repo to branch
|
|
git config remote.origin.push $branch:refs/for/$branch
|
|
|
|
git pull --rebase
|
|
|
|
# Push now
|
|
git push
|
|
|
|
git status
|