Set git user name
git config --global user.name "firstname Lastname"
Set git user email address
git config --global user.email "email@domain.com"
Setup/add github remote url
git remote add origin git@github.com:username/reponame.git
Or,
git remote add origin https://github.com/username/reponame.git
Verify github remote url
git remote -v
git config --global user.name "firstname Lastname"
Set git user email address
git config --global user.email "email@domain.com"
Setup/add github remote url
git remote add origin git@github.com:username/reponame.git
Or,
git remote add origin https://github.com/username/reponame.git
Verify github remote url
git remote -v
0 comments:
Post a Comment