Git基本使用方法

一、初始起步

初次使用需要设置姓名和邮箱

git config -global user.name "your name"

git config -global user.email **********@example.com


二、clone项目

用于把一个Github的项目clone(下载)到本地变为本地仓库

git clone [email protected]:ST-1997/example.git


三、把暂存区的更新提交到本地仓库

git commit -am "add file"


四、把当前本地仓库的改动推送到远程仓库(origin)的master分支

第一次:git push origin master

以后提交:git push


五、把远程仓库的更新合并到本地仓库

git pull

你可能感兴趣的:(Git基本使用方法)