Getting your remote url
git remote -vWill show up remote name, url, and fetch/push status
Changing remote url
git remote set-url [remote_name] [new_url]
Getting your ssh default key (via git bash)
ssh-keygen -yEntering your passphrase, then you can get your ssh key which you can copy to your github or other git compatible versioning control
Pushing to your newly created git
git push [git_name] [branch]eg:
git push my_first_git master
No comments:
Post a Comment