GitHub使用
1. PortableGit下载
2. PortableGit安装
3. 环境变量设置
GIT_HOME D:\GreenSoftware\PortableGit
PATH %GIT_HOME%\cmd
4. 配置Git
以管理员的身份运行git-bash.exe
4.1. 在本地创建ssh key
ssh-keygen -t rsa -C zzzzz@xxxxxx.com
后面的[email protected]改为你在github上注册的邮箱,之后会要求确认路径和输入密码,我们这使用默认的一路回车就行。成功的话会在~/下生成.ssh文件夹,进去,打开id_rsa.pub,复制里面的key。
4.2. 将公钥输入到GitHub的官网中
4.3. 验证
ssh -T [email protected]
4.4. 设置全局global 账号信息
git config --global user.name "yyyyy"
git config --global user.email zzzzz@xxxxxx.com
5. Git使用
5.1. 创建仓库
在GitHub上创建
5.2. 下载代码
$ cd myproject/
$ git init
$ git remote add origin [email protected]:yyyyy/myproject.git
$ git pull origin master
$ git status
5.3. 更新.gitignore文件
在.gitignore的结尾加入
target/
.settings/
.classpath
.project
5.4. 提交代码
$ git status
$ git add ./
git commit -m "初始化代码"
git push origin master
标签:origin,git,global,GitHub,ssh,使用,com From: https://www.cnblogs.com/gispathfinder/p/17076843.html