Bash: aliases to sync Git repos with GitHub and Bitbucket.
This commit is contained in:
parent
92f327cac1
commit
d50c0fc4bd
@ -134,3 +134,19 @@ function yay() {
|
||||
echo "URL copied to clipboard."
|
||||
fi
|
||||
}
|
||||
|
||||
# Setup syncronization of current Git repo with GitHub repo of the same name
|
||||
function git-github() {
|
||||
user="sapegin"
|
||||
repo=`basename "$(pwd)"`
|
||||
git remote add origin "git@github.com:$user/$repo.git"
|
||||
git push -u origin master
|
||||
}
|
||||
|
||||
# Setup syncronization of current Git repo with Bitbucket repo of the same name
|
||||
function git-bitbucket() {
|
||||
user="sapegin"
|
||||
repo=`basename "$(pwd)"`
|
||||
git remote add origin "https://$user@bitbucket.org/$user/$repo.git"
|
||||
git push -u origin master
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user