1.用户设置
以下操作均在Git Bash中进行。
git config --global user.name "yourID" git config --global user.email "yourEmail"
执行上述操作,来为所有本地的Git仓库配置。
ssh-keygen
执行该操作来生成SSH公钥,默认保存在用户文件夹的.ssh文件中,文件名以.pub结尾。
2.建立本地仓库
cd dirName mkdir dirName
通过上述两操作来进入想要建立仓库的地址,以及创建新文件。
git init
执行该指令把当前目录变为本地仓库。
git add . git comment -m "yourcomment"
执行上述操作,即可在建立本地仓库。
3.远程仓库的建立
在Github上建立仓库的过程不在此赘述。
之后,在personal settings的SSH and GPG keys中,new SSH keys,公钥与第一部分的公钥一致。
然后再在Emails中取消邮箱的private.
4.仓库的连接
git remote add origin yourAddress.git git push -u origin master
第一个指令中yourAddress即为你的仓库的地址,在后面添加.git。