Skip to content

Instantly share code, notes, and snippets.

View pramodhm112's full-sized avatar
🐢
Focusing 🎯

Pramodh M pramodhm112

🐢
Focusing 🎯
View GitHub Profile
@pramodhm112
pramodhm112 / Update remote repo
Created July 14, 2020 06:11 — forked from mandiwise/Update remote repo
Transfer repo from Bitbucket to Github
// Reference: http://www.blackdogfoundry.com/blog/moving-repository-from-bitbucket-to-github/
// See also: http://www.paulund.co.uk/change-url-of-git-repository
$ cd $HOME/Code/repo-directory
$ git remote rename origin bitbucket
$ git remote add origin https://github.com/mandiwise/awesome-new-repo.git
$ git push origin master
$ git remote rm bitbucket
# Autogenerated input type of AddComment
input AddCommentInput {
# A unique identifier for the client performing the mutation.
clientMutationId: String
# The Node ID of the subject to modify.
subjectId: ID!
# The contents of the comment.
body: String!