Last active
December 27, 2024 11:23
-
-
Save robwierzbowski/5430952 to your computer and use it in GitHub Desktop.
A simple litte script. Create and push to a new github repo from the command line.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# https://gist.github.com/robwierzbowski/5430952/ | |
# Create and push to a new github repo from the command line. | |
# Grabs sensible defaults from the containing folder and `.gitconfig`. | |
# Refinements welcome. | |
# Gather constant vars | |
CURRENTDIR=${PWD##*/} | |
GITHUBUSER=$(git config github.user) | |
# Get user input | |
read "REPONAME?New repo name (enter for ${PWD##*/}):" | |
read "USER?Git Username (enter for ${GITHUBUSER}):" | |
read "DESCRIPTION?Repo Description:" | |
echo "Here we go..." | |
# Curl some json to the github API oh damn we so fancy | |
curl -u ${USER:-${GITHUBUSER}} https://api.github.com/user/repos -d "{\"name\": \"${REPONAME:-${CURRENTDIR}}\", \"description\": \"${DESCRIPTION}\", \"private\": false, \"has_issues\": true, \"has_downloads\": true, \"has_wiki\": false}" | |
# Set the freshly created repo to the origin and push | |
# You'll need to have added your public key to your github account | |
git remote set-url origin [email protected]:${USER:-${GITHUBUSER}}/${REPONAME:-${CURRENTDIR}}.git | |
git push --set-upstream origin master |
Sorry, I no longer maintain this code. There are probably better examples on the internet in 2019.
I'm using
#Usage: gcreate userName repoName "Description if any" gcreate () { curl -u $1 https://api.github.com/user/repos -d "{\"name\": \"$2\", \"description\": \"$3\"}" }You can put it in
.bash_profile
/.bashrc
and simply usegcreate
Thanks, its amazing just what I was looking for.
Hello Team,
we have one task where we need to upload code with mulptiple branches into gitlab account. total project: 140 (approx) branches in each project :4-5 (average)
I have written one script to download all repository with branches from gitlab account.
Now we have to upload it in another gitlab account.
If anyone is intereseted in this u can write the script.
script should take code from local system with branches and upload it in gitlab one by one. we can refer to gitlab API.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It's not asking any username or repo name it is giving the following error
fatal: 'origin' does not appear to be a git repository
fatal: Could not read from remote repository.
pls help.