赞
踩
windows下载链接
https://git-scm.com/downloads
打开Git bash
图片源自廖雪峰官方网站
1.基础配置
新建文件目录(不包含中文)
文件夹下右键点击Git bash here
查看你个Github用户名
https://github.com/“your name”/-
$ git config --global user.name "Your Name" #输入GitHub用户名
$ git config --global user.email "email@example.com" #输入你的邮箱
注明: 无双引号的英文
2.仓库配置
$ mkdir “your file” #创建一个子目录(英文无引号)
$ cd “your file” #移动至你新建的文件夹(子目录)
$ pwd #pwd 显示当前路径
/Users/michael/learngit
3.通过git init命令把这个目录变成Git可以管理的仓库
$ git init #成功显示如下
Initialized empty Git repository in /Users/michael/learngit/.git/
成功会显示.git目录(可用ls -ah查看)
4.添加文件
创建一新文件如(readme.txt)
第一步,用命令git add告诉Git,把文件添加到仓库:
$ git add readme.txt
第二步,用命令git commit告诉Git,把文件提交到仓库:
$ git commit -m "wrote a readme file"
#成功提交代码如下
[master (root-commit) eaadf4e] wrote a readme file
1 file changed, 2 insertions(+)
create mode 100644 readme.txt
注意:-m“加入英文备注”
Git add 可以多次添加多个文件
Git commit 可以一次提交多个文件
常见错误:On branch master #错误原因多次提交文件,且未修改
nothing to commit, working tree clean
教程源自廖雪峰官方网站
本文为学习二次整理
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。