- 下载git
- 下载安装
一路回车
- 安装好之后,到git的安装目录,打开git-bash.exe
- 输入命令行
- 首先进入你要创建仓库的目录
初始化一个Git仓库,使用
git init
命令。添加文件到Git仓库,分两步:
第一步,使用命令
git add <file>
,注意,可反复多次使用,添加多个文件;第二步,使用命令
git commit
,完成。 - 设置
git config --global user.email "[email protected]"
- 同样 的设置
git config --global user.name "example"
- git输入命令
ssh-keygen -t rsa -C "[email protected]"
- windows下在user/用户名/里面找到.ssh文件夹 复制id_rsa.pub内容到github,登陆GitHub,打开"Account settings","SSH Keys"页面:然后,点"Add SSH Key",填上任意Title,在Key文本框里粘贴
id_rsa.pub 文件里面的所有内容,配置好ssh后之后
- 添加后,在终端(Terminal)中输入
-
ssh -T [email protected]
- 若返回
-
Welcome to [email protected], yourname!
- 则证明添加成功。
- 接下来总结一下步骤:
-
1、在github上创建项目
2、使用git clone https://github.com/xxxxxxx/xxxxx.git克隆到本地
3、编辑项目
4、git add . (将改动添加到暂存区)
5、git commit -m "提交说明"
6、git push origin master 将本地更改推送到远程master分支。
这样你就完成了向远程仓库的推送。
- 如果在github的remote上已经有了文件,会出现错误。此时应当先pull一下,即:
-
git pull origin master
- 然后再进行:
-
git push origin master
时间: 2024-10-09 21:10:35