首次使用先要建立本地github信息:
git config - -global user.name newbird
git config - -global user.email [email protected]
ssh-keygen -t rsa -C [email protected]
//该命令将会在~/.ssh/下生成公钥id_rsa.pub
//打开该文件,将公钥复制到github用户主页中的“SSH and GPG keys”的New SSH key中
//打开主页中所需要要同步的repostory,选择“clone and download”选择“clone with ssh”
//将生成的ssh key复制,并在shell中执行git "ssh key you copyed",这时便将repository同步到本地了
修改本地repository并push到主页:
git add filename //filename可省
git commit -m “ xxxxxx” branchname -a //branchname添加到branch分支, 可省
git push origin master //origin master可省
时间: 2024-10-18 17:33:01