初始化一个空仓库
git init
关联远程仓库
git remote add origin [url]
拉取远程内容
git pull
将远程仓库复制至到本地
git clone [url]
推送本地内容到远程仓库
git push origin master
添加到缓存区
git add . #把新增的、修改的都加到缓存
git add -u #把修改的、删除的都加到缓存
git add -A #把新增、修改的、删除的都加到缓存
把缓存区的所有内容提交到当前分支
git commit -m '本次提交的备注'
查看当前git状态信息(查看是否有文件未提交)
git status
第一次关联远程仓库时需配置授权
创建SSH Key (需要生成 id_rsa私钥 和 id_rsa.pub公钥两个文件)
登录GitHub,复制 id_rsa.pub 内容至SSH Key,可允许添加多个SSH。
ssh-keygen -t rsa -C "[email protected]"
设置账号和邮箱
git config --global user.name "Your Name"
git config --global user.email "[email protected]"
查看git的配置信息
git config -l