-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from quinlan-lab/rootstock-2023-09-06
Merge upstream changes from rootstock repo
- Loading branch information
Showing
11 changed files
with
48 additions
and
60 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ echo "OWNER and REPO refer to the details of your manuscript repo location:" | |
echo "i.e. https://github.com/OWNER/REPO." | ||
echo | ||
echo "Options:" | ||
echo " -o --owner GitHub user or organisation name." | ||
echo " -o --owner GitHub user or organization name." | ||
echo " -r --repo Name of the repository for your new manuscript." | ||
echo " -y --yes Non-interactive mode. Continue script without asking for confirmation that the repo exists." | ||
echo " -s --ssh Use SSH to authenticate GitHub account. HTTPS is used by default." | ||
|
@@ -104,7 +104,7 @@ if [ -z "${OWNER}" ] || [ -z "${REPO}" ]; then | |
echo "First, we need to specify where to create the GitHub repo for your manuscript." | ||
echo | ||
echo "The URL will take this format: https://github.com/OWNER/REPO." | ||
echo "OWNER is your username or organisation" | ||
echo "OWNER is your username or organization" | ||
echo "REPO is the name of your repository" | ||
echo | ||
read -r -p "Type in the OWNER now:" input | ||
|
@@ -188,13 +188,13 @@ fi | |
case $AUTH in | ||
0) | ||
echo | ||
echo "Seting origin URL using its https web address" | ||
echo "Setting origin URL using its https web address" | ||
echo | ||
git remote set-url origin https://github.com/${OWNER}/${REPO}.git | ||
;; | ||
1) | ||
echo | ||
echo "Seting origin URL using SSH" | ||
echo "Setting origin URL using SSH" | ||
echo | ||
git remote set-url origin [email protected]:$OWNER/$REPO.git | ||
;; | ||
|